From 992f5853fb625be015fa28e9a0154278b2ed41a2 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Tue, 26 Jan 2021 16:54:18 +0800 Subject: [PATCH] Merge branch 'api' of https://gitee.com/jyyforjava/zq-erp into api --- zq-erp/src/main/java/com/matrix/system/hive/dao/SysProjServicesDao.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/dao/SysProjServicesDao.java b/zq-erp/src/main/java/com/matrix/system/hive/dao/SysProjServicesDao.java index 825d86e..08933dd 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/dao/SysProjServicesDao.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/dao/SysProjServicesDao.java @@ -3,6 +3,9 @@ import com.matrix.system.app.dto.ServiceOrderListDto; import com.matrix.system.app.vo.ServiceOrderListVo; import com.matrix.system.hive.bean.SysProjServices; +import com.matrix.system.shopXcx.api.dto.ErpServiceOrderListDto; +import com.matrix.system.shopXcx.api.vo.ErpOrderDetailItemVo; +import com.matrix.system.shopXcx.api.vo.ErpServiceOrderListVo; import org.apache.ibatis.annotations.Param; import com.matrix.core.pojo.PaginationVO; @@ -41,4 +44,31 @@ List<ServiceOrderListVo> selectApiServiceOrderListInPage(@Param("record") ServiceOrderListDto serviceOrderListDto, @Param("pageVo") PaginationVO pageVo); int selectApiServiceOrderListTotal(@Param("record") ServiceOrderListDto serviceOrderListDto); + + /** + * 小程序端查询客户预约单 + * @param orderListDto + * @return + */ + List<ErpServiceOrderListVo> findWxServiceOrderList(ErpServiceOrderListDto orderListDto); + + /** + * 小程序端查询客户预约单详情 + * @param id + * @return + */ + ErpServiceOrderListVo findWxServiceOrderById(Long id); + + /** + * 查询预约时间在1小时之内且没有通知过的服务单 + * @return + */ + List<SysProjServices> selectNeedNoticeService(); + + /** + * 设置服务单为已通知 + * @param noticedIds + * @return + */ + int updateNoticeTimes(@Param("list")List<Long> noticedIds); } \ No newline at end of file -- Gitblit v1.9.1