package com.stylefeng.guns.modular.system.service.impl; import com.baomidou.mybatisplus.plugins.Page; import com.stylefeng.guns.modular.system.model.TLine; import com.stylefeng.guns.modular.system.dao.TLineMapper; import com.stylefeng.guns.modular.system.service.ITLineService; import com.baomidou.mybatisplus.service.impl.ServiceImpl; import org.springframework.stereotype.Service; import java.util.List; import java.util.Map; /** *

* 跨城线路 服务实现类 *

* * @author 吕雪 * @since 2020-09-15 */ @Service public class TLineServiceImpl extends ServiceImpl implements ITLineService { @Override public List> getLineList(Page> page, String beginTime, String endTime, String name, String insertUser, String modelStr, Integer state) { return this.baseMapper.getLineList(page, beginTime, endTime, name, insertUser, modelStr, state); } @Override public List> getLinePriceList(Integer lineId) { return this.baseMapper.getLinePriceList(lineId); } @Override public List> getLineCompanyList(Integer lineId) { return this.baseMapper.getLineCompanyList(lineId); } }