diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjController.java new file mode 100644 index 0000000..09d4193 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.Gyzj; +import com.hxhq.business.service.IGyzjService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 给药制剂Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/gyzj") +public class GyzjController extends BaseController +{ + @Autowired + private IGyzjService gyzjService; + + /** + * 查询给药制剂列表 + */ + @GetMapping("/list") + public TableDataInfo list(Gyzj gyzj) + { + startPage(); + List list = gyzjService.queryList(gyzj); + return getDataTable(list); + } + + /** + * 获取给药制剂详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(gyzjService.getById(id)); + } + + /** + * 新增给药制剂信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody Gyzj gyzj) + { + return toAjax(gyzjService.saveOrUpdate(gyzj)); + } + + /** + * 删除给药制剂信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(gyzjService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjFfjlController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjFfjlController.java new file mode 100644 index 0000000..79fd678 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjFfjlController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.GyzjFfjl; +import com.hxhq.business.service.IGyzjFfjlService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 给药制剂-发放记录Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/gyzjFfjl") +public class GyzjFfjlController extends BaseController +{ + @Autowired + private IGyzjFfjlService gyzjFfjlService; + + /** + * 查询给药制剂-发放记录列表 + */ + @GetMapping("/list") + public TableDataInfo list(GyzjFfjl gyzjFfjl) + { + startPage(); + List list = gyzjFfjlService.queryList(gyzjFfjl); + return getDataTable(list); + } + + /** + * 获取给药制剂-发放记录详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(gyzjFfjlService.getById(id)); + } + + /** + * 新增给药制剂-发放记录信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody GyzjFfjl gyzjFfjl) + { + return toAjax(gyzjFfjlService.saveOrUpdate(gyzjFfjl)); + } + + /** + * 删除给药制剂-发放记录信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(gyzjFfjlService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjJcgjController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjJcgjController.java new file mode 100644 index 0000000..6e5d93d --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjJcgjController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.GyzjJcgj; +import com.hxhq.business.service.IGyzjJcgjService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 给药制剂-稽查轨迹Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/gyzjJcgj") +public class GyzjJcgjController extends BaseController +{ + @Autowired + private IGyzjJcgjService gyzjJcgjService; + + /** + * 查询给药制剂-稽查轨迹列表 + */ + @GetMapping("/list") + public TableDataInfo list(GyzjJcgj gyzjJcgj) + { + startPage(); + List list = gyzjJcgjService.queryList(gyzjJcgj); + return getDataTable(list); + } + + /** + * 获取给药制剂-稽查轨迹详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(gyzjJcgjService.getById(id)); + } + + /** + * 新增给药制剂-稽查轨迹信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody GyzjJcgj gyzjJcgj) + { + return toAjax(gyzjJcgjService.saveOrUpdate(gyzjJcgj)); + } + + /** + * 删除给药制剂-稽查轨迹信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(gyzjJcgjService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjTzController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjTzController.java new file mode 100644 index 0000000..77ab48a --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/GyzjTzController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.GyzjTz; +import com.hxhq.business.service.IGyzjTzService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 给药制剂-台账Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/gyzjTz") +public class GyzjTzController extends BaseController +{ + @Autowired + private IGyzjTzService gyzjTzService; + + /** + * 查询给药制剂-台账列表 + */ + @GetMapping("/list") + public TableDataInfo list(GyzjTz gyzjTz) + { + startPage(); + List list = gyzjTzService.queryList(gyzjTz); + return getDataTable(list); + } + + /** + * 获取给药制剂-台账详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(gyzjTzService.getById(id)); + } + + /** + * 新增给药制剂-台账信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody GyzjTz gyzjTz) + { + return toAjax(gyzjTzService.saveOrUpdate(gyzjTz)); + } + + /** + * 删除给药制剂-台账信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(gyzjTzService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyController.java new file mode 100644 index 0000000..f07369d --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.Mjy; +import com.hxhq.business.service.IMjyService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 麻精药Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/mjy") +public class MjyController extends BaseController +{ + @Autowired + private IMjyService mjyService; + + /** + * 查询麻精药列表 + */ + @GetMapping("/list") + public TableDataInfo list(Mjy mjy) + { + startPage(); + List list = mjyService.queryList(mjy); + return getDataTable(list); + } + + /** + * 获取麻精药详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(mjyService.getById(id)); + } + + /** + * 新增麻精药信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody Mjy mjy) + { + return toAjax(mjyService.saveOrUpdate(mjy)); + } + + /** + * 删除麻精药信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(mjyService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyFfjlController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyFfjlController.java new file mode 100644 index 0000000..3896003 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyFfjlController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.MjyFfjl; +import com.hxhq.business.service.IMjyFfjlService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 麻精药-发放记录Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/mjyFfjl") +public class MjyFfjlController extends BaseController +{ + @Autowired + private IMjyFfjlService mjyFfjlService; + + /** + * 查询麻精药-发放记录列表 + */ + @GetMapping("/list") + public TableDataInfo list(MjyFfjl mjyFfjl) + { + startPage(); + List list = mjyFfjlService.queryList(mjyFfjl); + return getDataTable(list); + } + + /** + * 获取麻精药-发放记录详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(mjyFfjlService.getById(id)); + } + + /** + * 新增麻精药-发放记录信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody MjyFfjl mjyFfjl) + { + return toAjax(mjyFfjlService.saveOrUpdate(mjyFfjl)); + } + + /** + * 删除麻精药-发放记录信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(mjyFfjlService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyJcgjController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyJcgjController.java new file mode 100644 index 0000000..6bafd03 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyJcgjController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.MjyJcgj; +import com.hxhq.business.service.IMjyJcgjService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 麻精药-稽查轨迹Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/mjyJcgj") +public class MjyJcgjController extends BaseController +{ + @Autowired + private IMjyJcgjService mjyJcgjService; + + /** + * 查询麻精药-稽查轨迹列表 + */ + @GetMapping("/list") + public TableDataInfo list(MjyJcgj mjyJcgj) + { + startPage(); + List list = mjyJcgjService.queryList(mjyJcgj); + return getDataTable(list); + } + + /** + * 获取麻精药-稽查轨迹详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(mjyJcgjService.getById(id)); + } + + /** + * 新增麻精药-稽查轨迹信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody MjyJcgj mjyJcgj) + { + return toAjax(mjyJcgjService.saveOrUpdate(mjyJcgj)); + } + + /** + * 删除麻精药-稽查轨迹信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(mjyJcgjService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyTzController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyTzController.java new file mode 100644 index 0000000..2589d4d --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/MjyTzController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.MjyTz; +import com.hxhq.business.service.IMjyTzService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 麻精药-台账Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/mjyTz") +public class MjyTzController extends BaseController +{ + @Autowired + private IMjyTzService mjyTzService; + + /** + * 查询麻精药-台账列表 + */ + @GetMapping("/list") + public TableDataInfo list(MjyTz mjyTz) + { + startPage(); + List list = mjyTzService.queryList(mjyTz); + return getDataTable(list); + } + + /** + * 获取麻精药-台账详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(mjyTzService.getById(id)); + } + + /** + * 新增麻精药-台账信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody MjyTz mjyTz) + { + return toAjax(mjyTzService.saveOrUpdate(mjyTz)); + } + + /** + * 删除麻精药-台账信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(mjyTzService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgController.java new file mode 100644 index 0000000..c5ec793 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.Zcg; +import com.hxhq.business.service.IZcgService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 暂存柜Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/zcg") +public class ZcgController extends BaseController +{ + @Autowired + private IZcgService zcgService; + + /** + * 查询暂存柜列表 + */ + @GetMapping("/list") + public TableDataInfo list(Zcg zck) + { + startPage(); + List list = zcgService.queryList(zck); + return getDataTable(list); + } + + /** + * 获取暂存柜详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(zcgService.getById(id)); + } + + /** + * 新增暂存柜信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody Zcg zck) + { + return toAjax(zcgService.saveOrUpdate(zck)); + } + + /** + * 删除暂存柜信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(zcgService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgYjController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgYjController.java new file mode 100644 index 0000000..8bbcd1d --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/ZcgYjController.java @@ -0,0 +1,66 @@ +package com.hxhq.business.controller; + +import java.util.Arrays; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.*; +import com.hxhq.business.domain.ZcgYj; +import com.hxhq.business.service.IZcgYjService; +import com.hxhq.common.core.web.controller.BaseController; +import com.hxhq.common.core.web.domain.AjaxResult; +import com.hxhq.common.core.web.page.TableDataInfo; + + +/** + * 暂存柜-关联药剂Controller + * + * @author hxhq + * @date 2025-12-18 + */ +@RestController +@RequestMapping("/business/zcgYj") +public class ZcgYjController extends BaseController +{ + @Autowired + private IZcgYjService zcgYjService; + + /** + * 查询暂存柜-关联药剂列表 + */ + @GetMapping("/list") + public TableDataInfo list(ZcgYj zcgYj) + { + startPage(); + List list = zcgYjService.queryList(zcgYj); + return getDataTable(list); + } + + /** + * 获取暂存柜-关联药剂详细信息 + */ + @GetMapping(value = "/info") + public AjaxResult getInfo(Long id) + { + return AjaxResult.success(zcgYjService.getById(id)); + } + + /** + * 新增暂存柜-关联药剂信息 + */ + @PostMapping("/save") + public AjaxResult save(@RequestBody ZcgYj zcgYj) + { + return toAjax(zcgYjService.saveOrUpdate(zcgYj)); + } + + /** + * 删除暂存柜-关联药剂信息 + */ + @PostMapping("/delete") + public AjaxResult delete(@RequestBody Long[] ids) + { + return toAjax(zcgYjService.removeByIds(Arrays.asList(ids))); + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Gyzj.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Gyzj.java new file mode 100644 index 0000000..60e4614 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Gyzj.java @@ -0,0 +1,204 @@ +package com.hxhq.business.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 给药制剂对象 t_gyzj + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_gyzj") +public class Gyzj extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 名称 */ + private String mc; + + /** 编号 */ + private String bh; + + /** 浓度 */ + private String nd; + + /** 浓度单位 */ + private String nddw; + + /** 库存 */ + private String kc; + + /** 库存单位 */ + private String kcdw; + + /** 失效日期 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date sxrq; + + /** 制剂状态:1:入库;3:已发放;5:已锁定;7:待归档;9:归档;11:待解档 */ + private Long zt; + + /** 借阅状态:1:未借阅;3:借阅中 */ + private Long jyzt; + + /** 关联钥匙 */ + private Long zcgId; + + /** 存储条件 */ + private String cctj; + + /** 存储位置 */ + private String ccwz; + + /** 表单id */ + private Long bdId; + + /** 试验id */ + private Long syId; + + + public void setMc(String mc) + { + this.mc = mc; + } + + public String getMc() + { + return mc; + } + + public void setBh(String bh) + { + this.bh = bh; + } + + public String getBh() + { + return bh; + } + + public void setNd(String nd) + { + this.nd = nd; + } + + public String getNd() + { + return nd; + } + + public void setNddw(String nddw) + { + this.nddw = nddw; + } + + public String getNddw() + { + return nddw; + } + + public void setKc(String kc) + { + this.kc = kc; + } + + public String getKc() + { + return kc; + } + + public void setKcdw(String kcdw) + { + this.kcdw = kcdw; + } + + public String getKcdw() + { + return kcdw; + } + + public void setSxrq(Date sxrq) + { + this.sxrq = sxrq; + } + + public Date getSxrq() + { + return sxrq; + } + + public void setZt(Long zt) + { + this.zt = zt; + } + + public Long getZt() + { + return zt; + } + + public void setJyzt(Long jyzt) + { + this.jyzt = jyzt; + } + + public Long getJyzt() + { + return jyzt; + } + + public void setZcgId(Long zcgId) + { + this.zcgId = zcgId; + } + + public Long getZcgId() + { + return zcgId; + } + + public void setCctj(String cctj) + { + this.cctj = cctj; + } + + public String getCctj() + { + return cctj; + } + + public void setCcwz(String ccwz) + { + this.ccwz = ccwz; + } + + public String getCcwz() + { + return ccwz; + } + + public void setBdId(Long bdId) + { + this.bdId = bdId; + } + + public Long getBdId() + { + return bdId; + } + + public void setSyId(Long syId) + { + this.syId = syId; + } + + public Long getSyId() + { + return syId; + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjFfjl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjFfjl.java new file mode 100644 index 0000000..5faa950 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjFfjl.java @@ -0,0 +1,218 @@ +package com.hxhq.business.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 给药制剂-发放记录对象 t_gyzj_ffjl + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_gyzj_ffjl") +public class GyzjFfjl extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 给药制剂id */ + private Long gyzjId; + + /** 目的 */ + private String md; + + /** 转移条件 */ + private String zytj; + + /** 出库时间 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date cksj; + + /** 出库净重 */ + private String ckjz; + + /** 入库时间 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date rksj; + + /** 入库净重 */ + private String rkjz; + + /** 使用量 */ + private String syl; + + /** 领取人1 */ + private Long lqr1; + + /** 领取人2 */ + private Long lqr2; + + /** 库管员1 */ + private Long kgy1; + + /** 库管员2 */ + private Long kgy2; + + /** 暂存柜id */ + private Long zckId; + + /** 状态 */ + private Integer zt; + + /** 借阅状态 */ + private Integer jyzt; + + + public void setGyzjId(Long gyzjId) + { + this.gyzjId = gyzjId; + } + + public Long getGyzjId() + { + return gyzjId; + } + + public void setMd(String md) + { + this.md = md; + } + + public String getMd() + { + return md; + } + + public void setZytj(String zytj) + { + this.zytj = zytj; + } + + public String getZytj() + { + return zytj; + } + + public void setCksj(Date cksj) + { + this.cksj = cksj; + } + + public Date getCksj() + { + return cksj; + } + + public void setCkjz(String ckjz) + { + this.ckjz = ckjz; + } + + public String getCkjz() + { + return ckjz; + } + + public void setRksj(Date rksj) + { + this.rksj = rksj; + } + + public Date getRksj() + { + return rksj; + } + + public void setRkjz(String rkjz) + { + this.rkjz = rkjz; + } + + public String getRkjz() + { + return rkjz; + } + + public void setSyl(String syl) + { + this.syl = syl; + } + + public String getSyl() + { + return syl; + } + + public void setLqr1(Long lqr1) + { + this.lqr1 = lqr1; + } + + public Long getLqr1() + { + return lqr1; + } + + public void setLqr2(Long lqr2) + { + this.lqr2 = lqr2; + } + + public Long getLqr2() + { + return lqr2; + } + + public void setKgy1(Long kgy1) + { + this.kgy1 = kgy1; + } + + public Long getKgy1() + { + return kgy1; + } + + public void setKgy2(Long kgy2) + { + this.kgy2 = kgy2; + } + + public Long getKgy2() + { + return kgy2; + } + + public void setZckId(Long zckId) + { + this.zckId = zckId; + } + + public Long getZckId() + { + return zckId; + } + + public void setZt(Integer zt) + { + this.zt = zt; + } + + public Integer getZt() + { + return zt; + } + + public void setJyzt(Integer jyzt) + { + this.jyzt = jyzt; + } + + public Integer getJyzt() + { + return jyzt; + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjJcgj.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjJcgj.java new file mode 100644 index 0000000..c2e0ae2 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjJcgj.java @@ -0,0 +1,95 @@ +package com.hxhq.business.domain; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; +import io.swagger.v3.oas.models.security.SecurityScheme; + + +/** + * 给药制剂-稽查轨迹对象 t_gyzj_jcgj + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_gyzj_jcgj") +public class GyzjJcgj extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 给药制剂id */ + private Long gyzjId; + + /** 稽查轨迹类型 */ + private String jcgjlx; + + /** 稽查名称 */ + private String jcmc; + + /** 稽查名称颜色:1:蓝色;3:红色;5:绿色;7:橙色 */ + private Integer jcmcys; + + /** 稽查内容 */ + private String jcnr; + + /** 签名意义 */ + private String qmyy; + + /** 签名人id */ + private Long qmrId; + + public Long getGyzjId() { + return gyzjId; + } + + public void setGyzjId(Long gyzjId) { + this.gyzjId = gyzjId; + } + + public String getJcgjlx() { + return jcgjlx; + } + + public void setJcgjlx(String jcgjlx) { + this.jcgjlx = jcgjlx; + } + + public String getJcmc() { + return jcmc; + } + + public void setJcmc(String jcmc) { + this.jcmc = jcmc; + } + + public Integer getJcmcys() { + return jcmcys; + } + + public void setJcmcys(Integer jcmcys) { + this.jcmcys = jcmcys; + } + + public String getJcnr() { + return jcnr; + } + + public void setJcnr(String jcnr) { + this.jcnr = jcnr; + } + + public String getQmyy() { + return qmyy; + } + + public void setQmyy(String qmyy) { + this.qmyy = qmyy; + } + + public Long getQmrId() { + return qmrId; + } + + public void setQmrId(Long qmrId) { + this.qmrId = qmrId; + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjTz.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjTz.java new file mode 100644 index 0000000..5b4459b --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/GyzjTz.java @@ -0,0 +1,123 @@ +package com.hxhq.business.domain; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 给药制剂-台账对象 t_gyzj_tz + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_gyzj_tz") +public class GyzjTz extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 给药制剂id */ + private Long gyzjId; + + /** 使用人id */ + private Long syrId; + + /** 领取人id */ + private Long lqrId; + + /** 发放人id */ + private Long ffrId; + + /** 归还人id */ + private Long ghrId; + + /** 接收人id */ + private Long jsrId; + + /** 操作类型 */ + private String czlx; + + /** 操作量 */ + private String cznr; + + + public void setGyzjId(Long gyzjId) + { + this.gyzjId = gyzjId; + } + + public Long getGyzjId() + { + return gyzjId; + } + + public void setSyrId(Long syrId) + { + this.syrId = syrId; + } + + public Long getSyrId() + { + return syrId; + } + + public void setLqrId(Long lqrId) + { + this.lqrId = lqrId; + } + + public Long getLqrId() + { + return lqrId; + } + + public void setFfrId(Long ffrId) + { + this.ffrId = ffrId; + } + + public Long getFfrId() + { + return ffrId; + } + + public void setGhrId(Long ghrId) + { + this.ghrId = ghrId; + } + + public Long getGhrId() + { + return ghrId; + } + + public void setJsrId(Long jsrId) + { + this.jsrId = jsrId; + } + + public Long getJsrId() + { + return jsrId; + } + + public void setCzlx(String czlx) + { + this.czlx = czlx; + } + + public String getCzlx() + { + return czlx; + } + + public void setCznr(String cznr) + { + this.cznr = cznr; + } + + public String getCznr() + { + return cznr; + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Mjy.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Mjy.java new file mode 100644 index 0000000..29af7e3 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Mjy.java @@ -0,0 +1,204 @@ +package com.hxhq.business.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 麻精药对象 t_mjy + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_mjy") +public class Mjy extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 名称 */ + private String mc; + + /** 编号 */ + private String bh; + + /** 浓度 */ + private String nd; + + /** 浓度单位 */ + private String nddw; + + /** 库存 */ + private String kc; + + /** 库存单位 */ + private String kcdw; + + /** 失效日期 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date sxrq; + + /** 制剂状态:1:入库;3:已发放;5:已锁定;7:待归档;9:归档;11:待解档 */ + private Long zt; + + /** 借阅状态:1:未借阅;3:借阅中 */ + private Long jyzt; + + /** 关联钥匙 */ + private Long zcgId; + + /** 存储条件 */ + private String cctj; + + /** 存储位置 */ + private String ccwz; + + /** 表单id */ + private Long bdId; + + /** 试验id */ + private Long syId; + + + public void setMc(String mc) + { + this.mc = mc; + } + + public String getMc() + { + return mc; + } + + public void setBh(String bh) + { + this.bh = bh; + } + + public String getBh() + { + return bh; + } + + public void setNd(String nd) + { + this.nd = nd; + } + + public String getNd() + { + return nd; + } + + public void setNddw(String nddw) + { + this.nddw = nddw; + } + + public String getNddw() + { + return nddw; + } + + public void setKc(String kc) + { + this.kc = kc; + } + + public String getKc() + { + return kc; + } + + public void setKcdw(String kcdw) + { + this.kcdw = kcdw; + } + + public String getKcdw() + { + return kcdw; + } + + public void setSxrq(Date sxrq) + { + this.sxrq = sxrq; + } + + public Date getSxrq() + { + return sxrq; + } + + public void setZt(Long zt) + { + this.zt = zt; + } + + public Long getZt() + { + return zt; + } + + public void setJyzt(Long jyzt) + { + this.jyzt = jyzt; + } + + public Long getJyzt() + { + return jyzt; + } + + public void setZcgId(Long zcgId) + { + this.zcgId = zcgId; + } + + public Long getZcgId() + { + return zcgId; + } + + public void setCctj(String cctj) + { + this.cctj = cctj; + } + + public String getCctj() + { + return cctj; + } + + public void setCcwz(String ccwz) + { + this.ccwz = ccwz; + } + + public String getCcwz() + { + return ccwz; + } + + public void setBdId(Long bdId) + { + this.bdId = bdId; + } + + public Long getBdId() + { + return bdId; + } + + public void setSyId(Long syId) + { + this.syId = syId; + } + + public Long getSyId() + { + return syId; + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyFfjl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyFfjl.java new file mode 100644 index 0000000..4b3c34b --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyFfjl.java @@ -0,0 +1,218 @@ +package com.hxhq.business.domain; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 麻精药-发放记录对象 t_mjy_ffjl + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_mjy_ffjl") +public class MjyFfjl extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 麻精药id */ + private Long mjyId; + + /** 目的 */ + private String md; + + /** 转移条件 */ + private String zytj; + + /** 出库时间 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date cksj; + + /** 出库净重 */ + private String ckjz; + + /** 入库时间 */ + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date rksj; + + /** 入库净重 */ + private String rkjz; + + /** 使用量 */ + private String syl; + + /** 领取人1 */ + private Long lqr1; + + /** 领取人2 */ + private Long lqr2; + + /** 库管员1 */ + private Long kgy1; + + /** 库管员2 */ + private Long kgy2; + + /** 暂存柜id */ + private Long zckId; + + /** 状态 */ + private Integer zt; + + /** 借阅状态 */ + private Integer jyzt; + + + public void setMjyId(Long mjyId) + { + this.mjyId = mjyId; + } + + public Long getMjyId() + { + return mjyId; + } + + public void setMd(String md) + { + this.md = md; + } + + public String getMd() + { + return md; + } + + public void setZytj(String zytj) + { + this.zytj = zytj; + } + + public String getZytj() + { + return zytj; + } + + public void setCksj(Date cksj) + { + this.cksj = cksj; + } + + public Date getCksj() + { + return cksj; + } + + public void setCkjz(String ckjz) + { + this.ckjz = ckjz; + } + + public String getCkjz() + { + return ckjz; + } + + public void setRksj(Date rksj) + { + this.rksj = rksj; + } + + public Date getRksj() + { + return rksj; + } + + public void setRkjz(String rkjz) + { + this.rkjz = rkjz; + } + + public String getRkjz() + { + return rkjz; + } + + public void setSyl(String syl) + { + this.syl = syl; + } + + public String getSyl() + { + return syl; + } + + public void setLqr1(Long lqr1) + { + this.lqr1 = lqr1; + } + + public Long getLqr1() + { + return lqr1; + } + + public void setLqr2(Long lqr2) + { + this.lqr2 = lqr2; + } + + public Long getLqr2() + { + return lqr2; + } + + public void setKgy1(Long kgy1) + { + this.kgy1 = kgy1; + } + + public Long getKgy1() + { + return kgy1; + } + + public void setKgy2(Long kgy2) + { + this.kgy2 = kgy2; + } + + public Long getKgy2() + { + return kgy2; + } + + public void setZckId(Long zckId) + { + this.zckId = zckId; + } + + public Long getZckId() + { + return zckId; + } + + public void setZt(Integer zt) + { + this.zt = zt; + } + + public Integer getZt() + { + return zt; + } + + public void setJyzt(Integer jyzt) + { + this.jyzt = jyzt; + } + + public Integer getJyzt() + { + return jyzt; + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyJcgj.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyJcgj.java new file mode 100644 index 0000000..c7c86bf --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyJcgj.java @@ -0,0 +1,94 @@ +package com.hxhq.business.domain; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 麻精药-稽查轨迹对象 t_mjy_jcgj + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_mjy_jcgj") +public class MjyJcgj extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 麻精药id */ + private Long mjyId; + + /** 稽查轨迹类型 */ + private String jcgjlx; + + /** 稽查名称 */ + private String jcmc; + + /** 稽查名称颜色:1:蓝色;3:红色;5:绿色;7:橙色 */ + private Integer jcmcys; + + /** 稽查内容 */ + private String jcnr; + + /** 签名意义 */ + private String qmyy; + + /** 签名人id */ + private Long qmrId; + + public Long getMjyId() { + return mjyId; + } + + public void setMjyId(Long mjyId) { + this.mjyId = mjyId; + } + + public String getJcgjlx() { + return jcgjlx; + } + + public void setJcgjlx(String jcgjlx) { + this.jcgjlx = jcgjlx; + } + + public String getJcmc() { + return jcmc; + } + + public void setJcmc(String jcmc) { + this.jcmc = jcmc; + } + + public Integer getJcmcys() { + return jcmcys; + } + + public void setJcmcys(Integer jcmcys) { + this.jcmcys = jcmcys; + } + + public String getJcnr() { + return jcnr; + } + + public void setJcnr(String jcnr) { + this.jcnr = jcnr; + } + + public String getQmyy() { + return qmyy; + } + + public void setQmyy(String qmyy) { + this.qmyy = qmyy; + } + + public Long getQmrId() { + return qmrId; + } + + public void setQmrId(Long qmrId) { + this.qmrId = qmrId; + } +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyTz.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyTz.java new file mode 100644 index 0000000..8bd8191 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/MjyTz.java @@ -0,0 +1,123 @@ +package com.hxhq.business.domain; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 麻精药-台账对象 t_mjy_tz + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_mjy_tz") +public class MjyTz extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 麻精药id */ + private Long mjyId; + + /** 使用人id */ + private Long syrId; + + /** 领取人id */ + private Long lqrId; + + /** 发放人id */ + private Long ffrId; + + /** 归还人id */ + private Long ghrId; + + /** 接收人id */ + private Long jsrId; + + /** 操作类型 */ + private String czlx; + + /** 操作量 */ + private String cznr; + + + public void setMjyId(Long mjyId) + { + this.mjyId = mjyId; + } + + public Long getMjyId() + { + return mjyId; + } + + public void setSyrId(Long syrId) + { + this.syrId = syrId; + } + + public Long getSyrId() + { + return syrId; + } + + public void setLqrId(Long lqrId) + { + this.lqrId = lqrId; + } + + public Long getLqrId() + { + return lqrId; + } + + public void setFfrId(Long ffrId) + { + this.ffrId = ffrId; + } + + public Long getFfrId() + { + return ffrId; + } + + public void setGhrId(Long ghrId) + { + this.ghrId = ghrId; + } + + public Long getGhrId() + { + return ghrId; + } + + public void setJsrId(Long jsrId) + { + this.jsrId = jsrId; + } + + public Long getJsrId() + { + return jsrId; + } + + public void setCzlx(String czlx) + { + this.czlx = czlx; + } + + public String getCzlx() + { + return czlx; + } + + public void setCznr(String cznr) + { + this.cznr = cznr; + } + + public String getCznr() + { + return cznr; + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Zcg.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Zcg.java new file mode 100644 index 0000000..4ae927c --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/Zcg.java @@ -0,0 +1,84 @@ +package com.hxhq.business.domain; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 暂存柜对象 t_zcg + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_zcg") +public class Zcg extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 暂存库名称 */ + private String mc; + + /** 钥匙编号 */ + private String bh; + + /** 钥匙1领取人 */ + private Long yslqr1; + + /** 钥匙2领取人 */ + private Long yslqr2; + + /** 状态:1:未借用;5:借用中;10:停用 */ + private Long zt; + + + public void setMc(String mc) + { + this.mc = mc; + } + + public String getMc() + { + return mc; + } + + public void setBh(String bh) + { + this.bh = bh; + } + + public String getBh() + { + return bh; + } + + public void setYslqr1(Long yslqr1) + { + this.yslqr1 = yslqr1; + } + + public Long getYslqr1() + { + return yslqr1; + } + + public void setYslqr2(Long yslqr2) + { + this.yslqr2 = yslqr2; + } + + public Long getYslqr2() + { + return yslqr2; + } + + public void setZt(Long zt) + { + this.zt = zt; + } + + public Long getZt() + { + return zt; + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/ZcgYj.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/ZcgYj.java new file mode 100644 index 0000000..b39c611 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/domain/ZcgYj.java @@ -0,0 +1,71 @@ +package com.hxhq.business.domain; + +import com.baomidou.mybatisplus.annotation.TableName; +import com.hxhq.common.core.domain.MpBaseEntity; + + +/** + * 暂存柜-关联药剂对象 t_zcg_yj + * + * @author hxhq + * @date 2025-12-18 + */ +@TableName("t_zcg_yj") +public class ZcgYj extends MpBaseEntity +{ + private static final long serialVersionUID = 1L; + + /** 暂存库id */ + private Long zcgId; + + /** 药剂名称 */ + private String yjmc; + + /** 药剂id */ + private Long yjId; + + /** 药剂类型:1:供试品;3:给药制剂;5:麻精药 */ + private Long yjlx; + + + public void setZcgId(Long zcgId) + { + this.zcgId = zcgId; + } + + public Long getZcgId() + { + return zcgId; + } + + public void setYjmc(String yjmc) + { + this.yjmc = yjmc; + } + + public String getYjmc() + { + return yjmc; + } + + public void setYjId(Long yjId) + { + this.yjId = yjId; + } + + public Long getYjId() + { + return yjId; + } + + public void setYjlx(Long yjlx) + { + this.yjlx = yjlx; + } + + public Long getYjlx() + { + return yjlx; + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjFfjlMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjFfjlMapper.java new file mode 100644 index 0000000..768d0ad --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjFfjlMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.GyzjFfjl; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 给药制剂-发放记录Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface GyzjFfjlMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjJcgjMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjJcgjMapper.java new file mode 100644 index 0000000..95f5901 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjJcgjMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.GyzjJcgj; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 给药制剂-稽查轨迹Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface GyzjJcgjMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjMapper.java new file mode 100644 index 0000000..a7f684b --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.Gyzj; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 给药制剂Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface GyzjMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjTzMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjTzMapper.java new file mode 100644 index 0000000..b8db374 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/GyzjTzMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.GyzjTz; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 给药制剂-台账Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface GyzjTzMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyFfjlMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyFfjlMapper.java new file mode 100644 index 0000000..1c8f671 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyFfjlMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.MjyFfjl; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 麻精药-发放记录Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface MjyFfjlMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyJcgjMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyJcgjMapper.java new file mode 100644 index 0000000..6850d2c --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyJcgjMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.MjyJcgj; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 麻精药-稽查轨迹Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface MjyJcgjMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyMapper.java new file mode 100644 index 0000000..cb97854 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.Mjy; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 麻精药Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface MjyMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyTzMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyTzMapper.java new file mode 100644 index 0000000..f6de08b --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/MjyTzMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.MjyTz; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 麻精药-台账Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface MjyTzMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgMapper.java new file mode 100644 index 0000000..3aa1579 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.Zcg; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 暂存柜Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface ZcgMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgYjMapper.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgYjMapper.java new file mode 100644 index 0000000..ece06ad --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/mapper/ZcgYjMapper.java @@ -0,0 +1,14 @@ +package com.hxhq.business.mapper; + +import com.hxhq.business.domain.ZcgYj; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +/** + * 暂存柜-关联药剂Mapper接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface ZcgYjMapper extends BaseMapper +{ + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjFfjlService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjFfjlService.java new file mode 100644 index 0000000..56ae8a7 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjFfjlService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.GyzjFfjl; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 给药制剂-发放记录Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IGyzjFfjlService extends IService +{ + /** + * 查询给药制剂-发放记录列表 + * + * @param gyzjFfjl 给药制剂-发放记录 + * @return 给药制剂-发放记录集合 + */ + public List queryList(GyzjFfjl gyzjFfjl); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjJcgjService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjJcgjService.java new file mode 100644 index 0000000..568672e --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjJcgjService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.GyzjJcgj; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 给药制剂-稽查轨迹Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IGyzjJcgjService extends IService +{ + /** + * 查询给药制剂-稽查轨迹列表 + * + * @param gyzjJcgj 给药制剂-稽查轨迹 + * @return 给药制剂-稽查轨迹集合 + */ + public List queryList(GyzjJcgj gyzjJcgj); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjService.java new file mode 100644 index 0000000..f48992d --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.Gyzj; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 给药制剂Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IGyzjService extends IService +{ + /** + * 查询给药制剂列表 + * + * @param gyzj 给药制剂 + * @return 给药制剂集合 + */ + public List queryList(Gyzj gyzj); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjTzService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjTzService.java new file mode 100644 index 0000000..03fe88a --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IGyzjTzService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.GyzjTz; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 给药制剂-台账Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IGyzjTzService extends IService +{ + /** + * 查询给药制剂-台账列表 + * + * @param gyzjTz 给药制剂-台账 + * @return 给药制剂-台账集合 + */ + public List queryList(GyzjTz gyzjTz); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyFfjlService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyFfjlService.java new file mode 100644 index 0000000..931498e --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyFfjlService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.MjyFfjl; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 麻精药-发放记录Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IMjyFfjlService extends IService +{ + /** + * 查询麻精药-发放记录列表 + * + * @param mjyFfjl 麻精药-发放记录 + * @return 麻精药-发放记录集合 + */ + public List queryList(MjyFfjl mjyFfjl); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyJcgjService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyJcgjService.java new file mode 100644 index 0000000..3f8aa63 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyJcgjService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.MjyJcgj; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 麻精药-稽查轨迹Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IMjyJcgjService extends IService +{ + /** + * 查询麻精药-稽查轨迹列表 + * + * @param mjyJcgj 麻精药-稽查轨迹 + * @return 麻精药-稽查轨迹集合 + */ + public List queryList(MjyJcgj mjyJcgj); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyService.java new file mode 100644 index 0000000..1bd1004 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.Mjy; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 麻精药Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IMjyService extends IService +{ + /** + * 查询麻精药列表 + * + * @param mjy 麻精药 + * @return 麻精药集合 + */ + public List queryList(Mjy mjy); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyTzService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyTzService.java new file mode 100644 index 0000000..9b46cb3 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IMjyTzService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.MjyTz; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 麻精药-台账Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IMjyTzService extends IService +{ + /** + * 查询麻精药-台账列表 + * + * @param mjyTz 麻精药-台账 + * @return 麻精药-台账集合 + */ + public List queryList(MjyTz mjyTz); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgService.java new file mode 100644 index 0000000..1e7cb6d --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.Zcg; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 暂存柜Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IZcgService extends IService +{ + /** + * 查询暂存柜列表 + * + * @param zcg 暂存柜 + * @return 暂存柜集合 + */ + public List queryList(Zcg zcg); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgYjService.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgYjService.java new file mode 100644 index 0000000..e2f867c --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/IZcgYjService.java @@ -0,0 +1,23 @@ +package com.hxhq.business.service; + +import java.util.List; +import com.hxhq.business.domain.ZcgYj; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 暂存柜-关联药剂Service接口 + * + * @author hxhq + * @date 2025-12-18 + */ +public interface IZcgYjService extends IService +{ + /** + * 查询暂存柜-关联药剂列表 + * + * @param zcgYj 暂存柜-关联药剂 + * @return 暂存柜-关联药剂集合 + */ + public List queryList(ZcgYj zcgYj); + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjFfjlServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjFfjlServiceImpl.java new file mode 100644 index 0000000..3d054da --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjFfjlServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.GyzjFfjlMapper; +import com.hxhq.business.domain.GyzjFfjl; +import com.hxhq.business.service.IGyzjFfjlService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 给药制剂-发放记录Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class GyzjFfjlServiceImpl extends ServiceImpl implements IGyzjFfjlService +{ + /** + * 查询给药制剂-发放记录列表 + * + * @param gyzjFfjl 给药制剂-发放记录 + * @return 给药制剂-发放记录 + */ + @Override + public List queryList(GyzjFfjl gyzjFfjl) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjJcgjServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjJcgjServiceImpl.java new file mode 100644 index 0000000..bdabe46 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjJcgjServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.GyzjJcgjMapper; +import com.hxhq.business.domain.GyzjJcgj; +import com.hxhq.business.service.IGyzjJcgjService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 给药制剂-稽查轨迹Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class GyzjJcgjServiceImpl extends ServiceImpl implements IGyzjJcgjService +{ + /** + * 查询给药制剂-稽查轨迹列表 + * + * @param gyzjJcgj 给药制剂-稽查轨迹 + * @return 给药制剂-稽查轨迹 + */ + @Override + public List queryList(GyzjJcgj gyzjJcgj) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjServiceImpl.java new file mode 100644 index 0000000..064a080 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.GyzjMapper; +import com.hxhq.business.domain.Gyzj; +import com.hxhq.business.service.IGyzjService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 给药制剂Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class GyzjServiceImpl extends ServiceImpl implements IGyzjService +{ + /** + * 查询给药制剂列表 + * + * @param gyzj 给药制剂 + * @return 给药制剂 + */ + @Override + public List queryList(Gyzj gyzj) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjTzServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjTzServiceImpl.java new file mode 100644 index 0000000..f52c2e6 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/GyzjTzServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.GyzjTzMapper; +import com.hxhq.business.domain.GyzjTz; +import com.hxhq.business.service.IGyzjTzService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 给药制剂-台账Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class GyzjTzServiceImpl extends ServiceImpl implements IGyzjTzService +{ + /** + * 查询给药制剂-台账列表 + * + * @param gyzjTz 给药制剂-台账 + * @return 给药制剂-台账 + */ + @Override + public List queryList(GyzjTz gyzjTz) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyFfjlServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyFfjlServiceImpl.java new file mode 100644 index 0000000..2e5a2de --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyFfjlServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.MjyFfjlMapper; +import com.hxhq.business.domain.MjyFfjl; +import com.hxhq.business.service.IMjyFfjlService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 麻精药-发放记录Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class MjyFfjlServiceImpl extends ServiceImpl implements IMjyFfjlService +{ + /** + * 查询麻精药-发放记录列表 + * + * @param mjyFfjl 麻精药-发放记录 + * @return 麻精药-发放记录 + */ + @Override + public List queryList(MjyFfjl mjyFfjl) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyJcgjServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyJcgjServiceImpl.java new file mode 100644 index 0000000..764f871 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyJcgjServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.MjyJcgjMapper; +import com.hxhq.business.domain.MjyJcgj; +import com.hxhq.business.service.IMjyJcgjService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 麻精药-稽查轨迹Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class MjyJcgjServiceImpl extends ServiceImpl implements IMjyJcgjService +{ + /** + * 查询麻精药-稽查轨迹列表 + * + * @param mjyJcgj 麻精药-稽查轨迹 + * @return 麻精药-稽查轨迹 + */ + @Override + public List queryList(MjyJcgj mjyJcgj) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyServiceImpl.java new file mode 100644 index 0000000..5f8a810 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.MjyMapper; +import com.hxhq.business.domain.Mjy; +import com.hxhq.business.service.IMjyService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 麻精药Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class MjyServiceImpl extends ServiceImpl implements IMjyService +{ + /** + * 查询麻精药列表 + * + * @param mjy 麻精药 + * @return 麻精药 + */ + @Override + public List queryList(Mjy mjy) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyTzServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyTzServiceImpl.java new file mode 100644 index 0000000..a801f61 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/MjyTzServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.MjyTzMapper; +import com.hxhq.business.domain.MjyTz; +import com.hxhq.business.service.IMjyTzService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 麻精药-台账Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class MjyTzServiceImpl extends ServiceImpl implements IMjyTzService +{ + /** + * 查询麻精药-台账列表 + * + * @param mjyTz 麻精药-台账 + * @return 麻精药-台账 + */ + @Override + public List queryList(MjyTz mjyTz) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgServiceImpl.java new file mode 100644 index 0000000..58b840b --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.ZcgMapper; +import com.hxhq.business.domain.Zcg; +import com.hxhq.business.service.IZcgService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 暂存柜Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class ZcgServiceImpl extends ServiceImpl implements IZcgService +{ + /** + * 查询暂存柜列表 + * + * @param zcg 暂存柜 + * @return 暂存柜 + */ + @Override + public List queryList(Zcg zcg) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgYjServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgYjServiceImpl.java new file mode 100644 index 0000000..bd168f7 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/ZcgYjServiceImpl.java @@ -0,0 +1,34 @@ +package com.hxhq.business.service.impl; + +import java.util.List; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import org.springframework.stereotype.Service; +import com.hxhq.business.mapper.ZcgYjMapper; +import com.hxhq.business.domain.ZcgYj; +import com.hxhq.business.service.IZcgYjService; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * 暂存柜-关联药剂Service业务层处理 + * + * @author hxhq + * @date 2025-12-18 + */ +@Service +public class ZcgYjServiceImpl extends ServiceImpl implements IZcgYjService +{ + /** + * 查询暂存柜-关联药剂列表 + * + * @param zcgYj 暂存柜-关联药剂 + * @return 暂存柜-关联药剂 + */ + @Override + public List queryList(ZcgYj zcgYj) + { + QueryWrapper queryWrapper = Wrappers.query(); + return this.list(queryWrapper); + } + +} diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjFfjlMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjFfjlMapper.xml new file mode 100644 index 0000000..4fb7a91 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjFfjlMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjJcgjMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjJcgjMapper.xml new file mode 100644 index 0000000..e73fcf6 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjJcgjMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjMapper.xml new file mode 100644 index 0000000..81b7e50 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjTzMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjTzMapper.xml new file mode 100644 index 0000000..44c8a06 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/GyzjTzMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyFfjlMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyFfjlMapper.xml new file mode 100644 index 0000000..7cdf013 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyFfjlMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyJcgjMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyJcgjMapper.xml new file mode 100644 index 0000000..d2f1d5d --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyJcgjMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyMapper.xml new file mode 100644 index 0000000..9cd7e83 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyTzMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyTzMapper.xml new file mode 100644 index 0000000..e341dc4 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/MjyTzMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgMapper.xml new file mode 100644 index 0000000..b155a31 --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgYjMapper.xml b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgYjMapper.xml new file mode 100644 index 0000000..f5de26d --- /dev/null +++ b/hxhq-modules/hxhq-system/src/main/resources/mapper/business/ZcgYjMapper.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file