From 1e91dc33009cfdc951b2642877f40280b51c3089 Mon Sep 17 00:00:00 2001 From: zjh <1084500556@qq.com> Date: 星期五, 28 二月 2025 15:17:01 +0800 Subject: [PATCH] zjh20250228 --- ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictCompController.java | 48 ++++++++++++++++++++++++++++++++++++------------ 1 files changed, 36 insertions(+), 12 deletions(-) diff --git a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictCompController.java b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictCompController.java index 91bf6f0..4e42584 100644 --- a/ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictCompController.java +++ b/ltkj-admin/src/main/java/com/ltkj/web/controller/system/DictCompController.java @@ -1,23 +1,25 @@ package com.ltkj.web.controller.system; +import java.util.Date; import java.util.List; import javax.annotation.Resource; import javax.servlet.http.HttpServletResponse; +import cn.hutool.core.date.DateUtil; import cn.hutool.extra.pinyin.PinyinUtil; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.ltkj.framework.config.MatchUtils; +import com.ltkj.hosp.domain.TjCustomerBlack; +import com.ltkj.hosp.domain.TjReservation; +import com.ltkj.hosp.service.ITjReservationService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.PostMapping; -import org.springframework.web.bind.annotation.PutMapping; -import org.springframework.web.bind.annotation.DeleteMapping; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.bind.annotation.*; import com.ltkj.common.annotation.Log; import com.ltkj.common.core.controller.BaseController; import com.ltkj.common.core.domain.AjaxResult; @@ -39,7 +41,8 @@ public class DictCompController extends BaseController { @Resource private IDictCompService dictCompService; - + @Resource + private ITjReservationService reservationService; /** * 鑾峰彇鍗曚綅淇℃伅闆嗗悎鎺ュ彛 */ @@ -88,9 +91,11 @@ @Log(title = "浣撴鍗曚綅淇℃伅缁存姢", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody DictComp dictComp) { - String firstLetter = PinyinUtil.getFirstLetter(dictComp.getCnName(), ""); - dictComp.setWbm(MatchUtils.toWubi(dictComp.getCnName())); - dictComp.setEnName(firstLetter); + if(null !=dictComp.getCnName()){ + String firstLetter = PinyinUtil.getFirstLetter(dictComp.getCnName(), ""); + dictComp.setWbm(MatchUtils.toWubi(dictComp.getCnName())); + dictComp.setEnName(firstLetter); + } return toAjax(dictCompService.save(dictComp)); } @@ -113,4 +118,23 @@ public AjaxResult remove(@PathVariable String[] drugManufacturerIds) { return toAjax(dictCompService.deleteDictCompByDrugManufacturerIds(drugManufacturerIds)); } + + + @GetMapping("/getCusTomterListByCompId") + @ApiOperation(value = "鑾峰彇鍗曚綅id浣撴浜轰俊鎭帴鍙�") + public AjaxResult getCusTomterListByCompId(@RequestParam(required = false) @ApiParam(value = "鍗曚綅id") String compId, + @RequestParam(required = false) @ApiParam(value = "鍚嶅瓧") String name, + @RequestParam(required = false) @ApiParam(value = "閮ㄩ棬id") String deptId, + @RequestParam(required = false) @ApiParam(value = "棰勭害鏃堕棿") Date reservationTime) { + + LambdaQueryWrapper<TjReservation> wq=new LambdaQueryWrapper<>(); + if(null !=compId)wq.eq(TjReservation::getCompanyId,compId); + if(null !=name)wq.eq(TjReservation::getName,name); + if(null !=deptId)wq.eq(TjReservation::getDepartment,deptId); + if(null !=reservationTime)wq.between(TjReservation::getReservationTime, DateUtil.beginOfDay(reservationTime),DateUtil.endOfDay(reservationTime)); + wq.eq(TjReservation::getIsExpire,"2"); + return AjaxResult.success(reservationService.list(wq)); + } + + } -- Gitblit v1.8.0