| | |
| | | package com.stylefeng.guns.modular.system.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.plugins.Page; |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import com.stylefeng.guns.modular.system.dao.TOrderTapeMapper; |
| | | import com.stylefeng.guns.modular.system.dao.TPhoneMapper; |
| | |
| | | import com.stylefeng.guns.modular.system.service.ITOrderTapeService; |
| | | import com.stylefeng.guns.modular.system.service.ITPhoneService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Service |
| | | public class TOrderTapeServiceImpl extends ServiceImpl<TOrderTapeMapper, TOrderTape> implements ITOrderTapeService { |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> getOrderTapeList(Page<Map<String, Object>> page, String beginTime, String endTime, String fileName, String orderNum, String state) { |
| | | return this.baseMapper.getOrderTapeList(page, beginTime, endTime, fileName, orderNum, state); |
| | | } |
| | | } |