From 510475592869d73235929e283fcd3af823e54ede Mon Sep 17 00:00:00 2001 From: zjh <1084500556@qq.com> Date: 星期一, 18 十二月 2023 10:40:49 +0800 Subject: [PATCH] zjh 2023/12/18--1 --- ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjOrderServiceImpl.java | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjOrderServiceImpl.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjOrderServiceImpl.java index c193672..cc91e72 100644 --- a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjOrderServiceImpl.java +++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjOrderServiceImpl.java @@ -10,13 +10,13 @@ import com.ltkj.hosp.domain.TjPackage; import com.ltkj.hosp.service.IDictCompService; import com.ltkj.hosp.service.ITjCustomerService; +import com.ltkj.hosp.service.ITjOrderService; import com.ltkj.hosp.service.ITjPackageService; import com.ltkj.hosp.vodomain.LineChartsVo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ltkj.hosp.mapper.TjOrderMapper; import com.ltkj.hosp.domain.TjOrder; -import com.ltkj.hosp.service.ITjOrderService; import org.springframework.transaction.annotation.Transactional; /** @@ -240,4 +240,22 @@ return map1; } + + @Override + public Map<String, Object> getCsCunChuGuoChengCustomerList(String tjNumber, Integer page, Integer pageSize, Integer checkStatus, String compId, String beginTime, String endTime, String tjname) { + Map<String, Object> map = new HashMap<>(); + map.put("checkStatus",checkStatus); + map.put("page",page); + map.put("pageSize",pageSize); + map.put("tjNumber",tjNumber); + map.put("compId",compId); + map.put("tjname",tjname); + map.put("beginTime", DateUtil.beginOfDay(DateUtil.parse(beginTime))); + map.put("endTime",DateUtil.beginOfDay(DateUtil.parse(endTime))); + List<List<?>> list = tjOrderMapper.getCsCunChuGuoChengCustomerList(map); + Map<String,Object> map1=new HashMap<>(); + map1.put("customers",list); + map1.put("total",map.get("total")); + return map1; + } } -- Gitblit v1.8.0