| @ -0,0 +1,165 @@ | |||||
| package com.hxhq.business.controller; | |||||
| import com.hxhq.business.domain.GyzjFfjlJcgj; | |||||
| import com.hxhq.business.dto.gyzj.FfjlListDto; | |||||
| import com.hxhq.business.form.gyzj.*; | |||||
| import com.hxhq.business.service.IGyzjFfjlJcgjService; | |||||
| 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; | |||||
| import com.hxhq.common.security.annotation.RequiresPermissions; | |||||
| import com.hxhq.common.security.utils.SecurityUtils; | |||||
| import org.springframework.beans.factory.annotation.Autowired; | |||||
| import org.springframework.web.bind.annotation.*; | |||||
| import java.util.List; | |||||
| /** | |||||
| * 麻精药发放记录Controller | |||||
| * | |||||
| * @author hxhq | |||||
| * @date 2025-12-15 | |||||
| */ | |||||
| @RestController | |||||
| @RequestMapping("/business/gyzjFfjl") | |||||
| public class GyzjFfjlController extends BaseController | |||||
| { | |||||
| @Autowired | |||||
| private IGyzjFfjlJcgjService gyzjFfjlJcgjService; | |||||
| @Autowired | |||||
| private IGyzjFfjlService gyzjFfjlService; | |||||
| /** | |||||
| * 列表 | |||||
| */ | |||||
| @GetMapping("/list") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjllist") | |||||
| public TableDataInfo list(FfjlSearchForm form) | |||||
| { | |||||
| startPage(); | |||||
| List<FfjlListDto> list = gyzjFfjlService.queryList(form); | |||||
| return getDataTable(list); | |||||
| } | |||||
| /** | |||||
| * 详细信息 | |||||
| */ | |||||
| @RequiresPermissions("business:resource:gyzj:ffjlxq") | |||||
| @GetMapping(value = "/info") | |||||
| public AjaxResult getInfo(Long id) | |||||
| { | |||||
| return AjaxResult.success(gyzjFfjlService.queryInfo(id)); | |||||
| } | |||||
| /** | |||||
| * 稽查轨迹列表 | |||||
| */ | |||||
| @RequiresPermissions("business:resource:gyzj:ffjllist") | |||||
| @GetMapping("/jcgjList") | |||||
| public TableDataInfo jcgjList(GyzjFfjlJcgj form) | |||||
| { | |||||
| startPage(); | |||||
| List<GyzjFfjlJcgj> list = gyzjFfjlJcgjService.queryList(form); | |||||
| return getDataTable(list); | |||||
| } | |||||
| /** | |||||
| * 解档 | |||||
| */ | |||||
| @PostMapping("/jd") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjljd") | |||||
| public AjaxResult jd(@RequestBody FfjlJdForm form) | |||||
| { | |||||
| form.setQmrId(SecurityUtils.getUserId()); | |||||
| gyzjFfjlService.jd(form); | |||||
| return AjaxResult.success("操作成功"); | |||||
| } | |||||
| /** | |||||
| * 批量归档 | |||||
| */ | |||||
| @PostMapping("/plgd") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjlgd") | |||||
| public AjaxResult plgd(@RequestBody FfjlGdForm form) | |||||
| { | |||||
| form.setQmrId(SecurityUtils.getUserId()); | |||||
| gyzjFfjlService.plgd(form); | |||||
| return AjaxResult.success("操作成功"); | |||||
| } | |||||
| /** | |||||
| * 归档 | |||||
| */ | |||||
| @PostMapping("/gd") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjlgd") | |||||
| public AjaxResult gd(@RequestBody FfjlGdForm form) | |||||
| { | |||||
| form.setQmrId(SecurityUtils.getUserId()); | |||||
| gyzjFfjlService.gd(form); | |||||
| return AjaxResult.success("操作成功"); | |||||
| } | |||||
| /** | |||||
| * 批量锁定 | |||||
| */ | |||||
| @PostMapping("/plsd") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjlsd") | |||||
| public AjaxResult plsd(@RequestBody FfjlSdForm form) | |||||
| { | |||||
| form.setQmrId(SecurityUtils.getUserId()); | |||||
| gyzjFfjlService.plsd(form); | |||||
| return AjaxResult.success("操作成功"); | |||||
| } | |||||
| /** | |||||
| * 锁定 | |||||
| */ | |||||
| @PostMapping("/sd") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjlsd") | |||||
| public AjaxResult sd(@RequestBody FfjlSdForm form) | |||||
| { | |||||
| form.setQmrId(SecurityUtils.getUserId()); | |||||
| gyzjFfjlService.sd(form); | |||||
| return AjaxResult.success("操作成功"); | |||||
| } | |||||
| /** | |||||
| * 解锁 | |||||
| */ | |||||
| @PostMapping("/js") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjljs") | |||||
| public AjaxResult js(@RequestBody FfjlJsForm form) | |||||
| { | |||||
| form.setQmrId(SecurityUtils.getUserId()); | |||||
| gyzjFfjlService.js(form); | |||||
| return AjaxResult.success("操作成功"); | |||||
| } | |||||
| /** | |||||
| * 借阅 | |||||
| */ | |||||
| @PostMapping("/jy") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjljy") | |||||
| public AjaxResult jy(@RequestBody FfjlJyForm form) | |||||
| { | |||||
| form.setQmrId(SecurityUtils.getUserId()); | |||||
| gyzjFfjlService.jy(form); | |||||
| return AjaxResult.success("操作成功"); | |||||
| } | |||||
| /** | |||||
| * 加签 | |||||
| */ | |||||
| @PostMapping("/jq") | |||||
| @RequiresPermissions("business:resource:gyzj:ffjljq") | |||||
| public AjaxResult jq(@RequestBody FfjlJqForm form) | |||||
| { | |||||
| form.setQmrId(SecurityUtils.getUserId()); | |||||
| gyzjFfjlService.jq(form); | |||||
| return AjaxResult.success("操作成功"); | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,94 @@ | |||||
| package com.hxhq.business.domain; | |||||
| import com.baomidou.mybatisplus.annotation.TableName; | |||||
| import com.hxhq.common.core.domain.MpBaseEntity; | |||||
| /** | |||||
| * 麻精药发放记录-稽查轨迹对象 t_mjy_ffjl_jcgj | |||||
| * | |||||
| * @author hxhq | |||||
| * @date 2025-12-25 | |||||
| */ | |||||
| @TableName("t_mjy_ffjl_jcgj") | |||||
| public class GyzjFfjlJcgj extends MpBaseEntity | |||||
| { | |||||
| private static final long serialVersionUID = 1L; | |||||
| /** 发放记录id */ | |||||
| private Long ffjlId; | |||||
| /** 稽查轨迹类型:1:流程;3:编辑 */ | |||||
| private Integer jcgjlx; | |||||
| /** 稽查名称 */ | |||||
| private String jcmc; | |||||
| /** 稽查名称颜色:1:蓝色;3:红色;5:绿色;7:橙色 */ | |||||
| private Integer jcmcys; | |||||
| /** 稽查内容 */ | |||||
| private String jcnr; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人名称 */ | |||||
| private String qmrMc; | |||||
| public Long getFfjlId() { | |||||
| return ffjlId; | |||||
| } | |||||
| public void setFfjlId(Long ffjlId) { | |||||
| this.ffjlId = ffjlId; | |||||
| } | |||||
| public Integer getJcgjlx() { | |||||
| return jcgjlx; | |||||
| } | |||||
| public void setJcgjlx(Integer 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 Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrMc() { | |||||
| return qmrMc; | |||||
| } | |||||
| public void setQmrMc(String qmrMc) { | |||||
| this.qmrMc = qmrMc; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,42 @@ | |||||
| package com.hxhq.business.dto.gyzj; | |||||
| import com.hxhq.business.domain.Gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class DetailDto extends Gyzj { | |||||
| /** 表单名称 */ | |||||
| private String bdMc; | |||||
| /** 项目名称 */ | |||||
| private String xmMc; | |||||
| /** 表单所属人名称 */ | |||||
| private String bdssrMc; | |||||
| public String getBdMc() { | |||||
| return bdMc; | |||||
| } | |||||
| public void setBdMc(String bdMc) { | |||||
| this.bdMc = bdMc; | |||||
| } | |||||
| public String getXmMc() { | |||||
| return xmMc; | |||||
| } | |||||
| public void setXmMc(String xmMc) { | |||||
| this.xmMc = xmMc; | |||||
| } | |||||
| public String getBdssrMc() { | |||||
| return bdssrMc; | |||||
| } | |||||
| public void setBdssrMc(String bdssrMc) { | |||||
| this.bdssrMc = bdssrMc; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,11 @@ | |||||
| package com.hxhq.business.dto.gyzj; | |||||
| import com.hxhq.business.domain.GyzjFfjl; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlDetailDto extends GyzjFfjl { | |||||
| } | |||||
| @ -0,0 +1,254 @@ | |||||
| package com.hxhq.business.dto.gyzj; | |||||
| import com.fasterxml.jackson.annotation.JsonFormat; | |||||
| import java.util.Date; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlListDto { | |||||
| /** id */ | |||||
| private Long id; | |||||
| /** 名称 */ | |||||
| private String mc; | |||||
| /** 编号 */ | |||||
| private String bh; | |||||
| /** 发放转移条件 */ | |||||
| private String ffzytj; | |||||
| /** 发放日期 */ | |||||
| @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | |||||
| private Date ffrq; | |||||
| /** 归还日期 */ | |||||
| @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | |||||
| private Date ghrq; | |||||
| /** 出库量 */ | |||||
| private String ckl; | |||||
| /** 出库量单位 */ | |||||
| private String ckldw; | |||||
| /** 入库量 */ | |||||
| private String rkl; | |||||
| /** 入库单位 */ | |||||
| private String rkldw; | |||||
| /** 出库毛重 */ | |||||
| private String ckmz; | |||||
| /** 出库毛重单位 */ | |||||
| private String ckmzdw; | |||||
| /** 领取人1名称 */ | |||||
| private String lqr1Mc; | |||||
| /** 领取人2名称 */ | |||||
| private String lqr2Mc; | |||||
| /** 发放人1名称 */ | |||||
| private String ffr1Mc; | |||||
| /** 发放人2名称 */ | |||||
| private String ffr2Mc; | |||||
| /** 使用量 */ | |||||
| private String syl; | |||||
| /** 使用量单位 */ | |||||
| private String syldw; | |||||
| /** 暂存柜名称 */ | |||||
| private String zcgMc; | |||||
| /** 目的名称 */ | |||||
| private String mdMc; | |||||
| /** 记录状态 1:未锁定 3:已锁定 5:待归档 7:归档 9:待解档 */ | |||||
| private Long jlzt; | |||||
| /** 借阅状态 1:未借阅 3:待借阅 5:借阅中 */ | |||||
| private Long jyzt; | |||||
| public String getMdMc() { | |||||
| return mdMc; | |||||
| } | |||||
| public void setMdMc(String mdMc) { | |||||
| this.mdMc = mdMc; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getMc() { | |||||
| return mc; | |||||
| } | |||||
| public void setMc(String mc) { | |||||
| this.mc = mc; | |||||
| } | |||||
| public String getBh() { | |||||
| return bh; | |||||
| } | |||||
| public void setBh(String bh) { | |||||
| this.bh = bh; | |||||
| } | |||||
| public String getFfzytj() { | |||||
| return ffzytj; | |||||
| } | |||||
| public void setFfzytj(String ffzytj) { | |||||
| this.ffzytj = ffzytj; | |||||
| } | |||||
| public Date getFfrq() { | |||||
| return ffrq; | |||||
| } | |||||
| public void setFfrq(Date ffrq) { | |||||
| this.ffrq = ffrq; | |||||
| } | |||||
| public Date getGhrq() { | |||||
| return ghrq; | |||||
| } | |||||
| public void setGhrq(Date ghrq) { | |||||
| this.ghrq = ghrq; | |||||
| } | |||||
| public String getCkl() { | |||||
| return ckl; | |||||
| } | |||||
| public void setCkl(String ckl) { | |||||
| this.ckl = ckl; | |||||
| } | |||||
| public String getCkldw() { | |||||
| return ckldw; | |||||
| } | |||||
| public void setCkldw(String ckldw) { | |||||
| this.ckldw = ckldw; | |||||
| } | |||||
| public String getRkl() { | |||||
| return rkl; | |||||
| } | |||||
| public void setRkl(String rkl) { | |||||
| this.rkl = rkl; | |||||
| } | |||||
| public String getRkldw() { | |||||
| return rkldw; | |||||
| } | |||||
| public void setRkldw(String rkldw) { | |||||
| this.rkldw = rkldw; | |||||
| } | |||||
| public String getCkmz() { | |||||
| return ckmz; | |||||
| } | |||||
| public void setCkmz(String ckmz) { | |||||
| this.ckmz = ckmz; | |||||
| } | |||||
| public String getCkmzdw() { | |||||
| return ckmzdw; | |||||
| } | |||||
| public void setCkmzdw(String ckmzdw) { | |||||
| this.ckmzdw = ckmzdw; | |||||
| } | |||||
| public String getLqr1Mc() { | |||||
| return lqr1Mc; | |||||
| } | |||||
| public void setLqr1Mc(String lqr1Mc) { | |||||
| this.lqr1Mc = lqr1Mc; | |||||
| } | |||||
| public String getLqr2Mc() { | |||||
| return lqr2Mc; | |||||
| } | |||||
| public void setLqr2Mc(String lqr2Mc) { | |||||
| this.lqr2Mc = lqr2Mc; | |||||
| } | |||||
| public String getFfr1Mc() { | |||||
| return ffr1Mc; | |||||
| } | |||||
| public void setFfr1Mc(String ffr1Mc) { | |||||
| this.ffr1Mc = ffr1Mc; | |||||
| } | |||||
| public String getFfr2Mc() { | |||||
| return ffr2Mc; | |||||
| } | |||||
| public void setFfr2Mc(String ffr2Mc) { | |||||
| this.ffr2Mc = ffr2Mc; | |||||
| } | |||||
| public String getSyl() { | |||||
| return syl; | |||||
| } | |||||
| public void setSyl(String syl) { | |||||
| this.syl = syl; | |||||
| } | |||||
| public String getSyldw() { | |||||
| return syldw; | |||||
| } | |||||
| public void setSyldw(String syldw) { | |||||
| this.syldw = syldw; | |||||
| } | |||||
| public String getZcgMc() { | |||||
| return zcgMc; | |||||
| } | |||||
| public void setZcgMc(String zcgMc) { | |||||
| this.zcgMc = zcgMc; | |||||
| } | |||||
| public Long getJlzt() { | |||||
| return jlzt; | |||||
| } | |||||
| public void setJlzt(Long jlzt) { | |||||
| this.jlzt = jlzt; | |||||
| } | |||||
| public Long getJyzt() { | |||||
| return jyzt; | |||||
| } | |||||
| public void setJyzt(Long jyzt) { | |||||
| this.jyzt = jyzt; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,320 @@ | |||||
| package com.hxhq.business.dto.gyzj; | |||||
| import com.fasterxml.jackson.annotation.JsonFormat; | |||||
| import java.util.Date; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class ListDto { | |||||
| /** id */ | |||||
| private Long id; | |||||
| /** 名称 */ | |||||
| 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 Integer zjzt; | |||||
| /** 借阅状态 1:未借阅 3:待借阅 5:借阅中 */ | |||||
| private Integer jyzt; | |||||
| /** 编辑状态 1:未编辑 3:审核中 */ | |||||
| private Integer bjzt; | |||||
| /** 库存编辑状态 1:未编辑 3:审核中 */ | |||||
| private Integer kcbjzt; | |||||
| /** 容器状态:1:未处置 3:已处置 */ | |||||
| private Integer rqzt; | |||||
| /** 暂存柜 */ | |||||
| private String zcgMc; | |||||
| /** 存储条件 */ | |||||
| private String cctj; | |||||
| /** 存储位置 */ | |||||
| private String ccwz; | |||||
| /** 创建时间 */ | |||||
| @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | |||||
| private Date createTime; | |||||
| /** 出库量 */ | |||||
| private String ckl; | |||||
| /** 出库量单位 */ | |||||
| private String ckldw; | |||||
| /** 发放转移条件 */ | |||||
| private String ffzytj; | |||||
| /** 出库毛重 */ | |||||
| private String ckmz; | |||||
| /** 出库毛重单位 */ | |||||
| private String ckmzdw; | |||||
| /** 领取人1名称 */ | |||||
| private String lqr1Mc; | |||||
| /** 领取人2名称 */ | |||||
| private String lqr2Mc; | |||||
| /** 发放人1名称 */ | |||||
| private String ffr1Mc; | |||||
| /** 发放人2名称 */ | |||||
| private String ffr2Mc; | |||||
| /** 发放备注 */ | |||||
| private String ffbz; | |||||
| /** 目的名称*/ | |||||
| private String mdMc; | |||||
| public String getCkl() { | |||||
| return ckl; | |||||
| } | |||||
| public void setCkl(String ckl) { | |||||
| this.ckl = ckl; | |||||
| } | |||||
| public String getCkldw() { | |||||
| return ckldw; | |||||
| } | |||||
| public void setCkldw(String ckldw) { | |||||
| this.ckldw = ckldw; | |||||
| } | |||||
| public String getFfzytj() { | |||||
| return ffzytj; | |||||
| } | |||||
| public void setFfzytj(String ffzytj) { | |||||
| this.ffzytj = ffzytj; | |||||
| } | |||||
| public String getCkmz() { | |||||
| return ckmz; | |||||
| } | |||||
| public void setCkmz(String ckmz) { | |||||
| this.ckmz = ckmz; | |||||
| } | |||||
| public String getCkmzdw() { | |||||
| return ckmzdw; | |||||
| } | |||||
| public void setCkmzdw(String ckmzdw) { | |||||
| this.ckmzdw = ckmzdw; | |||||
| } | |||||
| public String getLqr1Mc() { | |||||
| return lqr1Mc; | |||||
| } | |||||
| public void setLqr1Mc(String lqr1Mc) { | |||||
| this.lqr1Mc = lqr1Mc; | |||||
| } | |||||
| public String getLqr2Mc() { | |||||
| return lqr2Mc; | |||||
| } | |||||
| public void setLqr2Mc(String lqr2Mc) { | |||||
| this.lqr2Mc = lqr2Mc; | |||||
| } | |||||
| public String getFfr1Mc() { | |||||
| return ffr1Mc; | |||||
| } | |||||
| public void setFfr1Mc(String ffr1Mc) { | |||||
| this.ffr1Mc = ffr1Mc; | |||||
| } | |||||
| public String getFfr2Mc() { | |||||
| return ffr2Mc; | |||||
| } | |||||
| public void setFfr2Mc(String ffr2Mc) { | |||||
| this.ffr2Mc = ffr2Mc; | |||||
| } | |||||
| public String getFfbz() { | |||||
| return ffbz; | |||||
| } | |||||
| public void setFfbz(String ffbz) { | |||||
| this.ffbz = ffbz; | |||||
| } | |||||
| public String getMdMc() { | |||||
| return mdMc; | |||||
| } | |||||
| public void setMdMc(String mdMc) { | |||||
| this.mdMc = mdMc; | |||||
| } | |||||
| public Integer getRqzt() { | |||||
| return rqzt; | |||||
| } | |||||
| public void setRqzt(Integer rqzt) { | |||||
| this.rqzt = rqzt; | |||||
| } | |||||
| public Integer getBjzt() { | |||||
| return bjzt; | |||||
| } | |||||
| public void setBjzt(Integer bjzt) { | |||||
| this.bjzt = bjzt; | |||||
| } | |||||
| public Integer getKcbjzt() { | |||||
| return kcbjzt; | |||||
| } | |||||
| public void setKcbjzt(Integer kcbjzt) { | |||||
| this.kcbjzt = kcbjzt; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public Date getCreateTime() { | |||||
| return createTime; | |||||
| } | |||||
| public void setCreateTime(Date createTime) { | |||||
| this.createTime = createTime; | |||||
| } | |||||
| public String getMc() { | |||||
| return mc; | |||||
| } | |||||
| public void setMc(String mc) { | |||||
| this.mc = mc; | |||||
| } | |||||
| public String getBh() { | |||||
| return bh; | |||||
| } | |||||
| public void setBh(String bh) { | |||||
| this.bh = bh; | |||||
| } | |||||
| public String getNd() { | |||||
| return nd; | |||||
| } | |||||
| public void setNd(String nd) { | |||||
| this.nd = nd; | |||||
| } | |||||
| public String getNddw() { | |||||
| return nddw; | |||||
| } | |||||
| public void setNddw(String nddw) { | |||||
| this.nddw = nddw; | |||||
| } | |||||
| public String getKc() { | |||||
| return kc; | |||||
| } | |||||
| public void setKc(String kc) { | |||||
| this.kc = kc; | |||||
| } | |||||
| public String getKcdw() { | |||||
| return kcdw; | |||||
| } | |||||
| public void setKcdw(String kcdw) { | |||||
| this.kcdw = kcdw; | |||||
| } | |||||
| public Date getSxrq() { | |||||
| return sxrq; | |||||
| } | |||||
| public void setSxrq(Date sxrq) { | |||||
| this.sxrq = sxrq; | |||||
| } | |||||
| public Integer getZjzt() { | |||||
| return zjzt; | |||||
| } | |||||
| public void setZjzt(Integer zjzt) { | |||||
| this.zjzt = zjzt; | |||||
| } | |||||
| public Integer getJyzt() { | |||||
| return jyzt; | |||||
| } | |||||
| public void setJyzt(Integer jyzt) { | |||||
| this.jyzt = jyzt; | |||||
| } | |||||
| public String getZcgMc() { | |||||
| return zcgMc; | |||||
| } | |||||
| public void setZcgMc(String zcgMc) { | |||||
| this.zcgMc = zcgMc; | |||||
| } | |||||
| public String getCctj() { | |||||
| return cctj; | |||||
| } | |||||
| public void setCctj(String cctj) { | |||||
| this.cctj = cctj; | |||||
| } | |||||
| public String getCcwz() { | |||||
| return ccwz; | |||||
| } | |||||
| public void setCcwz(String ccwz) { | |||||
| this.ccwz = ccwz; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,164 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| import com.fasterxml.jackson.annotation.JsonFormat; | |||||
| import com.hxhq.common.core.annotation.Excel; | |||||
| import java.util.Date; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class BjForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 名称编辑 */ | |||||
| @Excel(name = "名称") | |||||
| private String mc; | |||||
| /** 浓度编辑 */ | |||||
| @Excel(name = "浓度") | |||||
| private String nd; | |||||
| /** 浓度单位编辑 */ | |||||
| @Excel(name = "浓度单位") | |||||
| private String nddw; | |||||
| /** 库存编辑 */ | |||||
| @Excel(name = "库存") | |||||
| private String kc; | |||||
| /** 库存单位编辑 */ | |||||
| @Excel(name = "库存单位") | |||||
| private String kcdw; | |||||
| /** 失效日期编辑 */ | |||||
| @Excel(name = "失效日期") | |||||
| @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") | |||||
| private Date sxrq; | |||||
| /** 存储条件编辑 */ | |||||
| @Excel(name = "存储条件") | |||||
| private String cctj; | |||||
| /** 存储位置编辑 */ | |||||
| @Excel(name = "存储位置") | |||||
| private String ccwz; | |||||
| /** 编辑备注 */ | |||||
| private String bjbz; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| /** 项目id */ | |||||
| private Long xmId; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getMc() { | |||||
| return mc; | |||||
| } | |||||
| public void setMc(String mc) { | |||||
| this.mc = mc; | |||||
| } | |||||
| public String getNd() { | |||||
| return nd; | |||||
| } | |||||
| public void setNd(String nd) { | |||||
| this.nd = nd; | |||||
| } | |||||
| public String getNddw() { | |||||
| return nddw; | |||||
| } | |||||
| public void setNddw(String nddw) { | |||||
| this.nddw = nddw; | |||||
| } | |||||
| public String getKc() { | |||||
| return kc; | |||||
| } | |||||
| public void setKc(String kc) { | |||||
| this.kc = kc; | |||||
| } | |||||
| public String getKcdw() { | |||||
| return kcdw; | |||||
| } | |||||
| public void setKcdw(String kcdw) { | |||||
| this.kcdw = kcdw; | |||||
| } | |||||
| public Date getSxrq() { | |||||
| return sxrq; | |||||
| } | |||||
| public void setSxrq(Date sxrq) { | |||||
| this.sxrq = sxrq; | |||||
| } | |||||
| public String getCctj() { | |||||
| return cctj; | |||||
| } | |||||
| public void setCctj(String cctj) { | |||||
| this.cctj = cctj; | |||||
| } | |||||
| public String getCcwz() { | |||||
| return ccwz; | |||||
| } | |||||
| public void setCcwz(String ccwz) { | |||||
| this.ccwz = ccwz; | |||||
| } | |||||
| public String getBjbz() { | |||||
| return bjbz; | |||||
| } | |||||
| public void setBjbz(String bjbz) { | |||||
| this.bjbz = bjbz; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| public Long getXmId() { | |||||
| return xmId; | |||||
| } | |||||
| public void setXmId(Long xmId) { | |||||
| this.xmId = xmId; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,106 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class CzrqForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 处置原因 */ | |||||
| private String czyy; | |||||
| /** 处置方式 */ | |||||
| private String czfs; | |||||
| /** 处置人id */ | |||||
| private Long clrId; | |||||
| /** 处置人密码 */ | |||||
| private String clrmm; | |||||
| /** 复核人id */ | |||||
| private Long fhrId; | |||||
| /** 复核人密码 */ | |||||
| private String fhrmm; | |||||
| /** 监督人id */ | |||||
| private Long jdrId; | |||||
| /** 监督人密码 */ | |||||
| private String jdrmm; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getCzyy() { | |||||
| return czyy; | |||||
| } | |||||
| public void setCzyy(String czyy) { | |||||
| this.czyy = czyy; | |||||
| } | |||||
| public String getCzfs() { | |||||
| return czfs; | |||||
| } | |||||
| public void setCzfs(String czfs) { | |||||
| this.czfs = czfs; | |||||
| } | |||||
| public Long getClrId() { | |||||
| return clrId; | |||||
| } | |||||
| public void setClrId(Long clrId) { | |||||
| this.clrId = clrId; | |||||
| } | |||||
| public String getClrmm() { | |||||
| return clrmm; | |||||
| } | |||||
| public void setClrmm(String clrmm) { | |||||
| this.clrmm = clrmm; | |||||
| } | |||||
| public Long getFhrId() { | |||||
| return fhrId; | |||||
| } | |||||
| public void setFhrId(Long fhrId) { | |||||
| this.fhrId = fhrId; | |||||
| } | |||||
| public String getFhrmm() { | |||||
| return fhrmm; | |||||
| } | |||||
| public void setFhrmm(String fhrmm) { | |||||
| this.fhrmm = fhrmm; | |||||
| } | |||||
| public Long getJdrId() { | |||||
| return jdrId; | |||||
| } | |||||
| public void setJdrId(Long jdrId) { | |||||
| this.jdrId = jdrId; | |||||
| } | |||||
| public String getJdrmm() { | |||||
| return jdrmm; | |||||
| } | |||||
| public void setJdrmm(String jdrmm) { | |||||
| this.jdrmm = jdrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,117 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class CzyjForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 处置原因 */ | |||||
| private String czyy; | |||||
| /** 处置方式 */ | |||||
| private String czfs; | |||||
| /** 处置量 */ | |||||
| private String czl; | |||||
| /** 处置人id */ | |||||
| private Long clrId; | |||||
| /** 处置人密码 */ | |||||
| private String clrmm; | |||||
| /** 复核人id */ | |||||
| private Long fhrId; | |||||
| /** 复核人密码 */ | |||||
| private String fhrmm; | |||||
| /** 监督人id */ | |||||
| private Long jdrId; | |||||
| /** 监督人密码 */ | |||||
| private String jdrmm; | |||||
| public String getCzl() { | |||||
| return czl; | |||||
| } | |||||
| public void setCzl(String czl) { | |||||
| this.czl = czl; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getCzyy() { | |||||
| return czyy; | |||||
| } | |||||
| public void setCzyy(String czyy) { | |||||
| this.czyy = czyy; | |||||
| } | |||||
| public String getCzfs() { | |||||
| return czfs; | |||||
| } | |||||
| public void setCzfs(String czfs) { | |||||
| this.czfs = czfs; | |||||
| } | |||||
| public Long getClrId() { | |||||
| return clrId; | |||||
| } | |||||
| public void setClrId(Long clrId) { | |||||
| this.clrId = clrId; | |||||
| } | |||||
| public String getClrmm() { | |||||
| return clrmm; | |||||
| } | |||||
| public void setClrmm(String clrmm) { | |||||
| this.clrmm = clrmm; | |||||
| } | |||||
| public Long getFhrId() { | |||||
| return fhrId; | |||||
| } | |||||
| public void setFhrId(Long fhrId) { | |||||
| this.fhrId = fhrId; | |||||
| } | |||||
| public String getFhrmm() { | |||||
| return fhrmm; | |||||
| } | |||||
| public void setFhrmm(String fhrmm) { | |||||
| this.fhrmm = fhrmm; | |||||
| } | |||||
| public Long getJdrId() { | |||||
| return jdrId; | |||||
| } | |||||
| public void setJdrId(Long jdrId) { | |||||
| this.jdrId = jdrId; | |||||
| } | |||||
| public String getJdrmm() { | |||||
| return jdrmm; | |||||
| } | |||||
| public void setJdrmm(String jdrmm) { | |||||
| this.jdrmm = jdrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,161 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 转移条件 */ | |||||
| private String zytj; | |||||
| /** 目的ids */ | |||||
| private String mdIds; | |||||
| /** 出库毛重 */ | |||||
| private String ckmz; | |||||
| /** 出库毛重单位 */ | |||||
| private String ckmzdw; | |||||
| /** 领取人1Id */ | |||||
| private Long lqr1Id; | |||||
| /** 领取人2Id */ | |||||
| private Long lqr2Id; | |||||
| /** 领取人1密码 */ | |||||
| private String lqr1mm; | |||||
| /** 领取人2密码 */ | |||||
| private String lqr2mm; | |||||
| /** 发放人1Id */ | |||||
| private Long ffr1Id; | |||||
| /** 发放人1密码 */ | |||||
| private String ffr1mm; | |||||
| /** 发放人2Id */ | |||||
| private Long ffr2Id; | |||||
| /** 发放人2密码 */ | |||||
| private String ffr2mm; | |||||
| public String getCkmzdw() { | |||||
| return ckmzdw; | |||||
| } | |||||
| public void setCkmzdw(String ckmzdw) { | |||||
| this.ckmzdw = ckmzdw; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public String getZytj() { | |||||
| return zytj; | |||||
| } | |||||
| public void setZytj(String zytj) { | |||||
| this.zytj = zytj; | |||||
| } | |||||
| public String getMdIds() { | |||||
| return mdIds; | |||||
| } | |||||
| public void setMdIds(String mdIds) { | |||||
| this.mdIds = mdIds; | |||||
| } | |||||
| public String getCkmz() { | |||||
| return ckmz; | |||||
| } | |||||
| public void setCkmz(String ckmz) { | |||||
| this.ckmz = ckmz; | |||||
| } | |||||
| public Long getLqr1Id() { | |||||
| return lqr1Id; | |||||
| } | |||||
| public void setLqr1Id(Long lqr1Id) { | |||||
| this.lqr1Id = lqr1Id; | |||||
| } | |||||
| public Long getLqr2Id() { | |||||
| return lqr2Id; | |||||
| } | |||||
| public void setLqr2Id(Long lqr2Id) { | |||||
| this.lqr2Id = lqr2Id; | |||||
| } | |||||
| public String getLqr1mm() { | |||||
| return lqr1mm; | |||||
| } | |||||
| public void setLqr1mm(String lqr1mm) { | |||||
| this.lqr1mm = lqr1mm; | |||||
| } | |||||
| public String getLqr2mm() { | |||||
| return lqr2mm; | |||||
| } | |||||
| public void setLqr2mm(String lqr2mm) { | |||||
| this.lqr2mm = lqr2mm; | |||||
| } | |||||
| public Long getFfr1Id() { | |||||
| return ffr1Id; | |||||
| } | |||||
| public void setFfr1Id(Long ffr1Id) { | |||||
| this.ffr1Id = ffr1Id; | |||||
| } | |||||
| public String getFfr1mm() { | |||||
| return ffr1mm; | |||||
| } | |||||
| public void setFfr1mm(String ffr1mm) { | |||||
| this.ffr1mm = ffr1mm; | |||||
| } | |||||
| public Long getFfr2Id() { | |||||
| return ffr2Id; | |||||
| } | |||||
| public void setFfr2Id(Long ffr2Id) { | |||||
| this.ffr2Id = ffr2Id; | |||||
| } | |||||
| public String getFfr2mm() { | |||||
| return ffr2mm; | |||||
| } | |||||
| public void setFfr2mm(String ffr2mm) { | |||||
| this.ffr2mm = ffr2mm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,62 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlGdForm { | |||||
| /** 发放记录id */ | |||||
| private Long id; | |||||
| /** 发放记录ids */ | |||||
| private Long[] ids; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,52 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlJdForm { | |||||
| /** 发放记录id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,52 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlJqForm { | |||||
| /** 发放记录id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,51 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlJsForm { | |||||
| /** 发放记录id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,79 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| import com.fasterxml.jackson.annotation.JsonFormat; | |||||
| import java.util.Date; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlJyForm { | |||||
| /** 发放记录id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| /** 日期开始 */ | |||||
| @JsonFormat(pattern = "yyyy-MM-dd") | |||||
| private Date startDate; | |||||
| /** 日期结束 */ | |||||
| @JsonFormat(pattern = "yyyy-MM-dd") | |||||
| private Date endDate; | |||||
| public Date getStartDate() { | |||||
| return startDate; | |||||
| } | |||||
| public void setStartDate(Date startDate) { | |||||
| this.startDate = startDate; | |||||
| } | |||||
| public Date getEndDate() { | |||||
| return endDate; | |||||
| } | |||||
| public void setEndDate(Date endDate) { | |||||
| this.endDate = endDate; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,62 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlSdForm { | |||||
| /** 发放记录id */ | |||||
| private Long id; | |||||
| /** 发放记录ids */ | |||||
| private Long[] ids; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,106 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class FfjlSearchForm { | |||||
| /** 名称 */ | |||||
| private String mc; | |||||
| /** 编号 */ | |||||
| private String bh; | |||||
| /** 入库日期开始 */ | |||||
| private String startDateRk; | |||||
| /** 入库日期结束 */ | |||||
| private String endDateRk; | |||||
| /** 出库日期开始 */ | |||||
| private String startDateCk; | |||||
| /** 出库日期结束 */ | |||||
| private String endDateCk; | |||||
| /** 记录状态 1:未锁定 3:已锁定 5:待归档 7:归档 9:待解档 */ | |||||
| private Integer jlzt; | |||||
| /** 借阅状态 1:未借阅 3:待借阅 5:借阅中 */ | |||||
| private Integer jyzt; | |||||
| /** 目的id */ | |||||
| private Long mdId; | |||||
| public String getMc() { | |||||
| return mc; | |||||
| } | |||||
| public void setMc(String mc) { | |||||
| this.mc = mc; | |||||
| } | |||||
| public String getBh() { | |||||
| return bh; | |||||
| } | |||||
| public void setBh(String bh) { | |||||
| this.bh = bh; | |||||
| } | |||||
| public String getStartDateRk() { | |||||
| return startDateRk; | |||||
| } | |||||
| public void setStartDateRk(String startDateRk) { | |||||
| this.startDateRk = startDateRk; | |||||
| } | |||||
| public String getEndDateRk() { | |||||
| return endDateRk; | |||||
| } | |||||
| public void setEndDateRk(String endDateRk) { | |||||
| this.endDateRk = endDateRk; | |||||
| } | |||||
| public String getStartDateCk() { | |||||
| return startDateCk; | |||||
| } | |||||
| public void setStartDateCk(String startDateCk) { | |||||
| this.startDateCk = startDateCk; | |||||
| } | |||||
| public String getEndDateCk() { | |||||
| return endDateCk; | |||||
| } | |||||
| public void setEndDateCk(String endDateCk) { | |||||
| this.endDateCk = endDateCk; | |||||
| } | |||||
| public Integer getJlzt() { | |||||
| return jlzt; | |||||
| } | |||||
| public void setJlzt(Integer jlzt) { | |||||
| this.jlzt = jlzt; | |||||
| } | |||||
| public Integer getJyzt() { | |||||
| return jyzt; | |||||
| } | |||||
| public void setJyzt(Integer jyzt) { | |||||
| this.jyzt = jyzt; | |||||
| } | |||||
| public Long getMdId() { | |||||
| return mdId; | |||||
| } | |||||
| public void setMdId(Long mdId) { | |||||
| this.mdId = mdId; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,62 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class GdForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 麻精药ids */ | |||||
| private Long[] ids; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,62 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class GhForm { | |||||
| /** 发放记录id */ | |||||
| private Long id; | |||||
| /** 发放记录ids */ | |||||
| private Long[] ids; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,51 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class JdForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,51 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class JsForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,79 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| import com.fasterxml.jackson.annotation.JsonFormat; | |||||
| import java.util.Date; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class JyForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| /** 日期开始 */ | |||||
| @JsonFormat(pattern = "yyyy-MM-dd") | |||||
| private Date startDate; | |||||
| /** 日期结束 */ | |||||
| @JsonFormat(pattern = "yyyy-MM-dd") | |||||
| private Date endDate; | |||||
| public Date getStartDate() { | |||||
| return startDate; | |||||
| } | |||||
| public void setStartDate(Date startDate) { | |||||
| this.startDate = startDate; | |||||
| } | |||||
| public Date getEndDate() { | |||||
| return endDate; | |||||
| } | |||||
| public void setEndDate(Date endDate) { | |||||
| this.endDate = endDate; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,99 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| import java.util.List; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class PlczrqForm { | |||||
| /** 麻精药列表 */ | |||||
| private List<PlczrqItem> list; | |||||
| /** 麻精药ids */ | |||||
| private Long[] ids; | |||||
| /** 处置人id */ | |||||
| private Long clrId; | |||||
| /** 处置人密码 */ | |||||
| private String clrmm; | |||||
| /** 复核人id */ | |||||
| private Long fhrId; | |||||
| /** 复核人密码 */ | |||||
| private String fhrmm; | |||||
| /** 监督人id */ | |||||
| private Long jdrId; | |||||
| /** 监督人密码 */ | |||||
| private String jdrmm; | |||||
| public List<PlczrqItem> getList() { | |||||
| return list; | |||||
| } | |||||
| public void setList(List<PlczrqItem> list) { | |||||
| this.list = list; | |||||
| } | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public Long getClrId() { | |||||
| return clrId; | |||||
| } | |||||
| public void setClrId(Long clrId) { | |||||
| this.clrId = clrId; | |||||
| } | |||||
| public String getClrmm() { | |||||
| return clrmm; | |||||
| } | |||||
| public void setClrmm(String clrmm) { | |||||
| this.clrmm = clrmm; | |||||
| } | |||||
| public Long getFhrId() { | |||||
| return fhrId; | |||||
| } | |||||
| public void setFhrId(Long fhrId) { | |||||
| this.fhrId = fhrId; | |||||
| } | |||||
| public String getFhrmm() { | |||||
| return fhrmm; | |||||
| } | |||||
| public void setFhrmm(String fhrmm) { | |||||
| this.fhrmm = fhrmm; | |||||
| } | |||||
| public Long getJdrId() { | |||||
| return jdrId; | |||||
| } | |||||
| public void setJdrId(Long jdrId) { | |||||
| this.jdrId = jdrId; | |||||
| } | |||||
| public String getJdrmm() { | |||||
| return jdrmm; | |||||
| } | |||||
| public void setJdrmm(String jdrmm) { | |||||
| this.jdrmm = jdrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,40 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class PlczrqItem { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 处置原因 */ | |||||
| private String czyy; | |||||
| /** 处置方式 */ | |||||
| private String czfs; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getCzyy() { | |||||
| return czyy; | |||||
| } | |||||
| public void setCzyy(String czyy) { | |||||
| this.czyy = czyy; | |||||
| } | |||||
| public String getCzfs() { | |||||
| return czfs; | |||||
| } | |||||
| public void setCzfs(String czfs) { | |||||
| this.czfs = czfs; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,97 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| import java.util.List; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class PlczyjForm { | |||||
| /** 麻精药列表 */ | |||||
| private List<PlczyjItem> list; | |||||
| /** 麻精药ids */ | |||||
| private Long[] ids; | |||||
| /** 处置人id */ | |||||
| private Long clrId; | |||||
| /** 处置人密码 */ | |||||
| private String clrmm; | |||||
| /** 复核人id */ | |||||
| private Long fhrId; | |||||
| /** 复核人密码 */ | |||||
| private String fhrmm; | |||||
| /** 监督人id */ | |||||
| private Long jdrId; | |||||
| /** 监督人密码 */ | |||||
| private String jdrmm; | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public List<PlczyjItem> getList() { | |||||
| return list; | |||||
| } | |||||
| public void setList(List<PlczyjItem> list) { | |||||
| this.list = list; | |||||
| } | |||||
| public Long getClrId() { | |||||
| return clrId; | |||||
| } | |||||
| public void setClrId(Long clrId) { | |||||
| this.clrId = clrId; | |||||
| } | |||||
| public String getClrmm() { | |||||
| return clrmm; | |||||
| } | |||||
| public void setClrmm(String clrmm) { | |||||
| this.clrmm = clrmm; | |||||
| } | |||||
| public Long getFhrId() { | |||||
| return fhrId; | |||||
| } | |||||
| public void setFhrId(Long fhrId) { | |||||
| this.fhrId = fhrId; | |||||
| } | |||||
| public String getFhrmm() { | |||||
| return fhrmm; | |||||
| } | |||||
| public void setFhrmm(String fhrmm) { | |||||
| this.fhrmm = fhrmm; | |||||
| } | |||||
| public Long getJdrId() { | |||||
| return jdrId; | |||||
| } | |||||
| public void setJdrId(Long jdrId) { | |||||
| this.jdrId = jdrId; | |||||
| } | |||||
| public String getJdrmm() { | |||||
| return jdrmm; | |||||
| } | |||||
| public void setJdrmm(String jdrmm) { | |||||
| this.jdrmm = jdrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,51 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class PlczyjItem { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 处置原因 */ | |||||
| private String czyy; | |||||
| /** 处置方式 */ | |||||
| private String czfs; | |||||
| /** 处置量 */ | |||||
| private String czl; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getCzyy() { | |||||
| return czyy; | |||||
| } | |||||
| public void setCzyy(String czyy) { | |||||
| this.czyy = czyy; | |||||
| } | |||||
| public String getCzfs() { | |||||
| return czfs; | |||||
| } | |||||
| public void setCzfs(String czfs) { | |||||
| this.czfs = czfs; | |||||
| } | |||||
| public String getCzl() { | |||||
| return czl; | |||||
| } | |||||
| public void setCzl(String czl) { | |||||
| this.czl = czl; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,119 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| import java.util.List; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class PlffForm { | |||||
| /** 麻精药列表 */ | |||||
| private List<PlffItem> list; | |||||
| /** 麻精药ids */ | |||||
| private Long[] ids; | |||||
| /** 领取人1Id */ | |||||
| private Long lqr1Id; | |||||
| /** 领取人2密码 */ | |||||
| private String lqr2mm; | |||||
| /** 领取人2Id */ | |||||
| private Long lqr2Id; | |||||
| /** 领取人1密码 */ | |||||
| private String lqr1mm; | |||||
| /** 发放人1Id */ | |||||
| private Long ffr1Id; | |||||
| /** 发放人1密码 */ | |||||
| private String ffr1mm; | |||||
| /** 发放人2Id */ | |||||
| private Long ffr2Id; | |||||
| /** 发放人2密码 */ | |||||
| private String ffr2mm; | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public List<PlffItem> getList() { | |||||
| return list; | |||||
| } | |||||
| public void setList(List<PlffItem> list) { | |||||
| this.list = list; | |||||
| } | |||||
| public Long getLqr1Id() { | |||||
| return lqr1Id; | |||||
| } | |||||
| public void setLqr1Id(Long lqr1Id) { | |||||
| this.lqr1Id = lqr1Id; | |||||
| } | |||||
| public Long getLqr2Id() { | |||||
| return lqr2Id; | |||||
| } | |||||
| public void setLqr2Id(Long lqr2Id) { | |||||
| this.lqr2Id = lqr2Id; | |||||
| } | |||||
| public String getLqr1mm() { | |||||
| return lqr1mm; | |||||
| } | |||||
| public void setLqr1mm(String lqr1mm) { | |||||
| this.lqr1mm = lqr1mm; | |||||
| } | |||||
| public String getLqr2mm() { | |||||
| return lqr2mm; | |||||
| } | |||||
| public void setLqr2mm(String lqr2mm) { | |||||
| this.lqr2mm = lqr2mm; | |||||
| } | |||||
| public Long getFfr1Id() { | |||||
| return ffr1Id; | |||||
| } | |||||
| public void setFfr1Id(Long ffr1Id) { | |||||
| this.ffr1Id = ffr1Id; | |||||
| } | |||||
| public String getFfr1mm() { | |||||
| return ffr1mm; | |||||
| } | |||||
| public void setFfr1mm(String ffr1mm) { | |||||
| this.ffr1mm = ffr1mm; | |||||
| } | |||||
| public Long getFfr2Id() { | |||||
| return ffr2Id; | |||||
| } | |||||
| public void setFfr2Id(Long ffr2Id) { | |||||
| this.ffr2Id = ffr2Id; | |||||
| } | |||||
| public String getFfr2mm() { | |||||
| return ffr2mm; | |||||
| } | |||||
| public void setFfr2mm(String ffr2mm) { | |||||
| this.ffr2mm = ffr2mm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,75 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class PlffItem { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 转移条件 */ | |||||
| private String zytj; | |||||
| /** 目的ids */ | |||||
| private String mdIds; | |||||
| /** 出库毛重 */ | |||||
| private String ckmz; | |||||
| /** 出库毛重单位 */ | |||||
| private String ckmzdw; | |||||
| public String getCkmzdw() { | |||||
| return ckmzdw; | |||||
| } | |||||
| public void setCkmzdw(String ckmzdw) { | |||||
| this.ckmzdw = ckmzdw; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public String getZytj() { | |||||
| return zytj; | |||||
| } | |||||
| public void setZytj(String zytj) { | |||||
| this.zytj = zytj; | |||||
| } | |||||
| public String getMdIds() { | |||||
| return mdIds; | |||||
| } | |||||
| public void setMdIds(String mdIds) { | |||||
| this.mdIds = mdIds; | |||||
| } | |||||
| public String getCkmz() { | |||||
| return ckmz; | |||||
| } | |||||
| public void setCkmz(String ckmz) { | |||||
| this.ckmz = ckmz; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,62 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class SdForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 麻精药ids */ | |||||
| private Long[] ids; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,73 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class SearchForm { | |||||
| /** 名称 */ | |||||
| private String mc; | |||||
| /** 编号 */ | |||||
| private String bh; | |||||
| /** 失效日期开始 */ | |||||
| private String startDate; | |||||
| /** 失效日期结束 */ | |||||
| private String endDate; | |||||
| /** 制剂状态:1:入库;3:已发放;5:已锁定;7:待归档;9:归档;11:待解档 */ | |||||
| private Integer zjzt; | |||||
| /** 借阅状态 1:未借阅 3:待借阅 5:借阅中 */ | |||||
| private Integer jyzt; | |||||
| public String getMc() { | |||||
| return mc; | |||||
| } | |||||
| public void setMc(String mc) { | |||||
| this.mc = mc; | |||||
| } | |||||
| public String getBh() { | |||||
| return bh; | |||||
| } | |||||
| public void setBh(String bh) { | |||||
| this.bh = bh; | |||||
| } | |||||
| public String getStartDate() { | |||||
| return startDate; | |||||
| } | |||||
| public void setStartDate(String startDate) { | |||||
| this.startDate = startDate; | |||||
| } | |||||
| public String getEndDate() { | |||||
| return endDate; | |||||
| } | |||||
| public void setEndDate(String endDate) { | |||||
| this.endDate = endDate; | |||||
| } | |||||
| public Integer getZjzt() { | |||||
| return zjzt; | |||||
| } | |||||
| public void setZjzt(Integer zjzt) { | |||||
| this.zjzt = zjzt; | |||||
| } | |||||
| public Integer getJyzt() { | |||||
| return jyzt; | |||||
| } | |||||
| public void setJyzt(Integer jyzt) { | |||||
| this.jyzt = jyzt; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,62 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class ShbjForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| /** 签名意义 */ | |||||
| private String qmyy; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| public String getQmyy() { | |||||
| return qmyy; | |||||
| } | |||||
| public void setQmyy(String qmyy) { | |||||
| this.qmyy = qmyy; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,86 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class ShxgkcForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 库存编辑 */ | |||||
| private String kc; | |||||
| /** 库存单位 */ | |||||
| private String kcdw; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| /** 签名意义 */ | |||||
| private String qmyy; | |||||
| public String getQmyy() { | |||||
| return qmyy; | |||||
| } | |||||
| public void setQmyy(String qmyy) { | |||||
| this.qmyy = qmyy; | |||||
| } | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getKc() { | |||||
| return kc; | |||||
| } | |||||
| public void setKc(String kc) { | |||||
| this.kc = kc; | |||||
| } | |||||
| public String getKcdw() { | |||||
| return kcdw; | |||||
| } | |||||
| public void setKcdw(String kcdw) { | |||||
| this.kcdw = kcdw; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,77 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| import com.hxhq.common.core.annotation.Excel; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class XgkcForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 库存 */ | |||||
| @Excel(name = "库存") | |||||
| private String kc;; | |||||
| /** 库存单位 */ | |||||
| @Excel(name = "库存单位") | |||||
| private String kcdw; | |||||
| /** 库存编辑备注 */ | |||||
| private String kcbjbz; | |||||
| /** 签名人id */ | |||||
| private Long qmrId; | |||||
| /** 签名人密码 */ | |||||
| private String qmrmm; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public String getKc() { | |||||
| return kc; | |||||
| } | |||||
| public void setKc(String kc) { | |||||
| this.kc = kc; | |||||
| } | |||||
| public String getKcdw() { | |||||
| return kcdw; | |||||
| } | |||||
| public void setKcdw(String kcdw) { | |||||
| this.kcdw = kcdw; | |||||
| } | |||||
| public String getKcbjbz() { | |||||
| return kcbjbz; | |||||
| } | |||||
| public void setKcbjbz(String kcbjbz) { | |||||
| this.kcbjbz = kcbjbz; | |||||
| } | |||||
| public Long getQmrId() { | |||||
| return qmrId; | |||||
| } | |||||
| public void setQmrId(Long qmrId) { | |||||
| this.qmrId = qmrId; | |||||
| } | |||||
| public String getQmrmm() { | |||||
| return qmrmm; | |||||
| } | |||||
| public void setQmrmm(String qmrmm) { | |||||
| this.qmrmm = qmrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,117 @@ | |||||
| package com.hxhq.business.form.gyzj; | |||||
| /** | |||||
| * @author 15881 | |||||
| */ | |||||
| public class YsffForm { | |||||
| /** 麻精药id */ | |||||
| private Long id; | |||||
| /** 麻精药ids */ | |||||
| private Long[] ids; | |||||
| /** 暂存柜id */ | |||||
| private Long zcgId; | |||||
| /** 备注 */ | |||||
| private String remark; | |||||
| /** 钥匙1领取人ID */ | |||||
| private Long lqr1Id; | |||||
| /** 钥匙2领取人ID */ | |||||
| private Long lqr2Id; | |||||
| /** 钥匙1领取人密码 */ | |||||
| private String lqr1mm; | |||||
| /** 钥匙2领取人密码 */ | |||||
| private String lqr2mm; | |||||
| /** 发放人 */ | |||||
| private Long ffrId; | |||||
| /** 发放人密码 */ | |||||
| private String ffrmm; | |||||
| public Long getId() { | |||||
| return id; | |||||
| } | |||||
| public void setId(Long id) { | |||||
| this.id = id; | |||||
| } | |||||
| public Long[] getIds() { | |||||
| return ids; | |||||
| } | |||||
| public void setIds(Long[] ids) { | |||||
| this.ids = ids; | |||||
| } | |||||
| public Long getZcgId() { | |||||
| return zcgId; | |||||
| } | |||||
| public void setZcgId(Long zcgId) { | |||||
| this.zcgId = zcgId; | |||||
| } | |||||
| public String getRemark() { | |||||
| return remark; | |||||
| } | |||||
| public void setRemark(String remark) { | |||||
| this.remark = remark; | |||||
| } | |||||
| public Long getLqr1Id() { | |||||
| return lqr1Id; | |||||
| } | |||||
| public void setLqr1Id(Long lqr1Id) { | |||||
| this.lqr1Id = lqr1Id; | |||||
| } | |||||
| public Long getLqr2Id() { | |||||
| return lqr2Id; | |||||
| } | |||||
| public void setLqr2Id(Long lqr2Id) { | |||||
| this.lqr2Id = lqr2Id; | |||||
| } | |||||
| public String getLqr1mm() { | |||||
| return lqr1mm; | |||||
| } | |||||
| public void setLqr1mm(String lqr1mm) { | |||||
| this.lqr1mm = lqr1mm; | |||||
| } | |||||
| public String getLqr2mm() { | |||||
| return lqr2mm; | |||||
| } | |||||
| public void setLqr2mm(String lqr2mm) { | |||||
| this.lqr2mm = lqr2mm; | |||||
| } | |||||
| public Long getFfrId() { | |||||
| return ffrId; | |||||
| } | |||||
| public void setFfrId(Long ffrId) { | |||||
| this.ffrId = ffrId; | |||||
| } | |||||
| public String getFfrmm() { | |||||
| return ffrmm; | |||||
| } | |||||
| public void setFfrmm(String ffrmm) { | |||||
| this.ffrmm = ffrmm; | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,15 @@ | |||||
| package com.hxhq.business.mapper; | |||||
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | |||||
| import com.hxhq.business.domain.GyzjFfjlJcgj; | |||||
| /** | |||||
| * 给药制剂发放记录-稽查轨迹Mapper接口 | |||||
| * | |||||
| * @author hxhq | |||||
| * @date 2025-12-25 | |||||
| */ | |||||
| public interface GyzjFfjlJcgjMapper extends BaseMapper<GyzjFfjlJcgj> | |||||
| { | |||||
| } | |||||
| @ -0,0 +1,35 @@ | |||||
| package com.hxhq.business.service; | |||||
| import com.baomidou.mybatisplus.extension.service.IService; | |||||
| import com.hxhq.business.domain.GyzjFfjlJcgj; | |||||
| import java.util.List; | |||||
| /** | |||||
| * 给药制剂发放记录-稽查轨迹Service接口 | |||||
| * | |||||
| * @author hxhq | |||||
| * @date 2025-12-25 | |||||
| */ | |||||
| public interface IGyzjFfjlJcgjService extends IService<GyzjFfjlJcgj> | |||||
| { | |||||
| /** | |||||
| * 查询稽查轨迹列表 | |||||
| * @param gyzjJcgj 麻精药 | |||||
| * @return | |||||
| */ | |||||
| public List<GyzjFfjlJcgj> queryList(GyzjFfjlJcgj gyzjJcgj); | |||||
| /** | |||||
| * 新增稽查轨迹 | |||||
| * @param ffjlId 发放记录id | |||||
| * @param jcgjlx 稽查轨迹类型:1:流程;3:编辑 | |||||
| * @param jcmc 稽查名称 | |||||
| * @param jcmcys 稽查名称颜色:1:蓝色;3:红色;5:绿色;7:橙色 | |||||
| * @param jcnr 稽查内容 | |||||
| * @param jcrId 稽查人id | |||||
| * @param jcrMc 稽查人名称 | |||||
| */ | |||||
| public void saveJcgj(Long ffjlId, Integer jcgjlx, String jcmc, Integer jcmcys, String jcnr,Long jcrId,String jcrMc); | |||||
| } | |||||
| @ -0,0 +1,70 @@ | |||||
| package com.hxhq.business.service.impl; | |||||
| import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; | |||||
| import com.baomidou.mybatisplus.core.toolkit.Wrappers; | |||||
| import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; | |||||
| import com.hxhq.business.domain.GyzjFfjlJcgj; | |||||
| import com.hxhq.business.mapper.GyzjFfjlJcgjMapper; | |||||
| import com.hxhq.business.service.IGyzjFfjlJcgjService; | |||||
| import com.hxhq.common.core.utils.StringUtils; | |||||
| import org.springframework.stereotype.Service; | |||||
| import java.util.List; | |||||
| /** | |||||
| * 麻精药发放记录-稽查轨迹Service业务层处理 | |||||
| * | |||||
| * @author hxhq | |||||
| * @date 2025-12-25 | |||||
| */ | |||||
| @Service | |||||
| public class GyzjFfjlJcgjServiceImpl extends ServiceImpl<GyzjFfjlJcgjMapper, GyzjFfjlJcgj> implements IGyzjFfjlJcgjService | |||||
| { | |||||
| /** | |||||
| * 查询稽查轨迹列表 | |||||
| * @param gyzjFfjlJcgj 麻给药 | |||||
| * @return | |||||
| */ | |||||
| @Override | |||||
| public List<GyzjFfjlJcgj> queryList(GyzjFfjlJcgj gyzjFfjlJcgj){ | |||||
| QueryWrapper<GyzjFfjlJcgj> queryWrapper = Wrappers.query(); | |||||
| if(gyzjFfjlJcgj.getFfjlId()==null||gyzjFfjlJcgj.getFfjlId().longValue()<0){ | |||||
| throw new SecurityException("发放记录id不能为空"); | |||||
| } | |||||
| queryWrapper.eq("ffjl_id",gyzjFfjlJcgj.getFfjlId()); | |||||
| if(gyzjFfjlJcgj.getJcgjlx()!=null&&gyzjFfjlJcgj.getJcgjlx().intValue()>0){ | |||||
| queryWrapper.eq("jcgjlx",gyzjFfjlJcgj.getJcgjlx()); | |||||
| } | |||||
| if (StringUtils.isNoneBlank(gyzjFfjlJcgj.getJcmc())) { | |||||
| queryWrapper.and(p -> p.like("`jcmc`", gyzjFfjlJcgj.getJcmc()) | |||||
| .or().like("`jcnr`", gyzjFfjlJcgj.getJcmc())); | |||||
| } | |||||
| queryWrapper.orderByDesc("id"); | |||||
| return this.list(queryWrapper); | |||||
| } | |||||
| /** | |||||
| * 新增稽查轨迹 | |||||
| * @param ffjlId 发放记录id | |||||
| * @param jcgjlx 稽查轨迹类型:1:流程;3:编辑 | |||||
| * @param jcmc 稽查名称 | |||||
| * @param jcmcys 稽查名称颜色:1:蓝色;3:红色;5:绿色;7:橙色 | |||||
| * @param jcnr 稽查内容 | |||||
| * @param jcrId 稽查人id | |||||
| * @param jcrMc 稽查人名称 | |||||
| */ | |||||
| @Override | |||||
| public void saveJcgj(Long ffjlId, Integer jcgjlx, String jcmc, Integer jcmcys, String jcnr,Long jcrId,String jcrMc){ | |||||
| GyzjFfjlJcgj gyzjFfjlJcgj = new GyzjFfjlJcgj(); | |||||
| gyzjFfjlJcgj.setFfjlId(ffjlId); | |||||
| gyzjFfjlJcgj.setJcgjlx(jcgjlx); | |||||
| gyzjFfjlJcgj.setJcmc(jcmc); | |||||
| gyzjFfjlJcgj.setJcmcys(jcmcys); | |||||
| gyzjFfjlJcgj.setJcnr(jcnr); | |||||
| gyzjFfjlJcgj.setQmrId(jcrId); | |||||
| gyzjFfjlJcgj.setQmrMc(jcrMc); | |||||
| this.save(gyzjFfjlJcgj); | |||||
| } | |||||
| } | |||||
| @ -0,0 +1,6 @@ | |||||
| <?xml version="1.0" encoding="UTF-8" ?> | |||||
| <!DOCTYPE mapper | |||||
| PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" | |||||
| "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> | |||||
| <mapper namespace="com.hxhq.business.mapper.GyzjFfjlJcgjMapper"> | |||||
| </mapper> | |||||