| | |
| | | package cn.exrick.xboot.your.serviceimpl; |
| | | |
| | | import cn.exrick.xboot.your.entity.OrderStatusCount; |
| | | import cn.exrick.xboot.your.entity.Suggest; |
| | | import cn.exrick.xboot.your.mapper.OrderTaskMapper; |
| | | import cn.exrick.xboot.your.entity.OrderTask; |
| | | import cn.exrick.xboot.your.service.IOrderTaskService; |
| | | import cn.exrick.xboot.your.vo.Month; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | |
| | | public List<OrderTask> sumTime(String id) { |
| | | return orderTaskMapper.sumTime(id); |
| | | } |
| | | |
| | | @Override |
| | | public List<OrderTask> groupByTime(String areaId, String selectId) { |
| | | return orderTaskMapper.groupByTime(areaId,selectId); |
| | | } |
| | | |
| | | @Override |
| | | public List<OrderTask> list4(QueryWrapper<OrderTask> wrapper2) { |
| | | return orderTaskMapper.list4(wrapper2); |
| | | } |
| | | |
| | | @Override |
| | | public Month getSendNum(int year){ |
| | | return orderTaskMapper.getSendNum(year); |
| | | } |
| | | |
| | | public IPage<OrderTask> page2(Page initMpPage){ |
| | | return orderTaskMapper.page2(initMpPage); |
| | | } |
| | | |
| | | @Override |
| | | public IPage<OrderTask> page3(Page initMpPage, QueryWrapper<OrderTask> wrapper) { |
| | | return orderTaskMapper.page3(initMpPage,wrapper); |
| | | } |
| | | |
| | | @Override |
| | | public List<OrderStatusCount> countStatus(OrderStatusCount orderStatusCount) { |
| | | return this.orderTaskMapper.countStatus(orderStatusCount); |
| | | } |
| | | } |