123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- package thyyxxk.webserver.entity.zhuyuanyisheng.yizhuluru;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import lombok.Data;
- import org.springframework.format.annotation.DateTimeFormat;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * <p>
- * 描述: 医嘱信息
- * </p>
- *
- * @author xc
- * @date 2022-01-12 17:38
- */
- @Data
- public class XinZhenYzActOrder {
- /**
- * 临时 id 用来做父子医嘱
- */
- private BigDecimal id;
- /**
- * 费用的编码 药品或项目
- */
- private String orderCode;
- /**
- * 医保编码
- */
- private String nationalCode;
- /**
- * 费用名称
- */
- private String orderName;
- /**
- * 频次
- */
- private String frequCode;
- /**
- * 医生嘱托
- */
- private String instruction;
- /**
- * 描述
- */
- private String discription;
- /**
- * 婴儿标志
- */
- private String infantFlag;
- /**
- * 医嘱时间
- */
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss", shape = JsonFormat.Shape.STRING)
- private Date orderTime;
- /**
- * 医嘱开始时间
- */
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss", shape = JsonFormat.Shape.STRING)
- private Date startTime;
- /**
- * 停止时间
- */
- @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss", shape = JsonFormat.Shape.STRING)
- private Date endTime;
- /**
- * 录入人
- */
- private String physician;
- /**
- * 药品规格
- */
- private String drugSpecification;
- /**
- * 药品执行用量
- */
- private BigDecimal drugQuan;
- /**
- * 给药方式
- */
- private String supplyCode;
- /**
- * 医嘱号
- */
- private BigDecimal actOrderNo;
- /**
- * 药品类型
- */
- private String drugFlag;
- /**
- * 录入人
- */
- private String enterOper;
- /**
- * 结束时间
- */
- private Date enterTime;
- /**
- * 最小单位
- */
- private String miniUnit;
- /**
- * 药品重量
- */
- private BigDecimal drugWeight;
- /**
- * 药品重量单位
- */
- private String drugWeightUnit;
- /**
- * 录入状态 1-录入 2-确定 3-执行 4-执行 5-停止
- */
- private String statusFlag;
- /**
- * 费用标志
- */
- private String selfBuy;
- /**
- * 一次剂量
- */
- private BigDecimal dose;
- /**
- * 一次剂量 单位
- */
- private String doseUnit;
- /**
- * 执行用量 这个和 drug_quan 一样
- */
- private BigDecimal drugOcc;
- /**
- * 药品体积
- */
- private BigDecimal drugVolume;
- /**
- * 药品体积单位
- */
- private String drugVolUnit;
- /**
- * 父医嘱
- */
- private BigDecimal parentNo;
- /**
- * 包装体积
- */
- private BigDecimal packSize;
- /**
- * 包装单位体积
- */
- private String packUnit;
- /**
- * 0 普通 1 需住院确认
- */
- private String paySelf;
- /**
- * 00-项目 01-小包装 99-大包装
- */
- private String serial;
- /**
- * 药房 序号 这个是算出来的 早上 8:00:00 - 19:59:59 点 为 73
- * 晚上 8 点 到次日 8 点为 71
- */
- private String groupNo;
- /**
- * 1:医生录入
- */
- private String doctorFlag;
- /**
- * 执行科室
- */
- private String execUnit;
- /**
- * 申请已接收
- */
- private String regFlag;
- /**
- * 医保自费标志
- */
- private String ybSelfFlag;
- /**
- * 紧急标志
- */
- private String emergencyFlag;
- /**
- * 饭前饭后 标志
- */
- private String kfFlag;
- /**
- * 抗菌药物
- */
- private Integer kjywFlag;
- /*
- * 如果这个药是抗菌药物的话 就需要在 yz_act_record_kss中插入
- * */
- /**
- * 用药方式
- * 0-无
- * 1-手术预防用药 2-非手术预防用药 3-治疗用药-标本已送检 4-治疗用药-标本未已送检
- * 5-皮试用药
- */
- private Integer yyfs;
- /**
- * 手术切口
- * 0-无
- * 1-Ⅰ类切口 2-Ⅱ类切口 3-Ⅲ类切口
- * 4-微创 5-介入 6-其他
- */
- private Integer ssqk;
- /**
- * 术前用药时间
- * 0-无
- * 1-0.5至1小时
- * 2-2小时
- * 3-其他
- */
- private Integer yysj;
- // 药品的等级
- private Integer ypLevel;
- // 删除标志
- private Integer delFlag;
- // 停止人
- private String modifier;
- }
|