| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.common.core.vo.PaperInVo; |
| | | import com.ruoyi.order.entity.Order; |
| | | import com.ruoyi.order.vo.*; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | /** |
| | | * 订单管理-订单统计 |
| | | * |
| | | * @param name 师傅姓名 |
| | | * @param phone 师傅电话 |
| | | * @param page 分页 |
| | | * @param name 师傅姓名 |
| | | * @param phone 师傅电话 |
| | | * @param cityList 城市列表 |
| | | * @param page 分页 |
| | | * @return 分页统计 |
| | | */ |
| | | Page<OrderCountVO> orderCount(@Param("name") String name, @Param("phone") String phone, Page<OrderCountVO> page); |
| | | Page<OrderCountVO> orderCount(@Param("name") String name, @Param("phone") String phone, |
| | | @Param("cityList") List<String> cityList, Page<OrderCountVO> page); |
| | | |
| | | /** |
| | | * 订单列表 |
| | |
| | | */ |
| | | List<OrderQueryVO> orderCountByTimeRangeMonth(@Param("cityList") List<String> cityList, @Param("startTime") String startTime, |
| | | @Param("endTime") String endTime, @Param("orderState") Integer orderState); |
| | | |
| | | List<PaperInVo> papercout(@Param("workId")String workId,@Param("date")String date); |
| | | } |