|
@@ -0,0 +1,182 @@
|
|
|
+package thyyxxk.webserver.entity.zhuyuanyisheng.caoyaoyizhu;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import lombok.Data;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class YzActOrderCy implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1453078027541397715L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * inpatientNo
|
|
|
+ */
|
|
|
+ private String inpatientNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * admissTimes
|
|
|
+ */
|
|
|
+ private Integer admissTimes;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * zySerialNo
|
|
|
+ */
|
|
|
+ private String zySerialNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医嘱号
|
|
|
+ */
|
|
|
+ private Integer orderNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 01-小包装 99-大包装
|
|
|
+ */
|
|
|
+ private Integer serialNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 医嘱名,处方名
|
|
|
+ */
|
|
|
+ private String orderName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 金额
|
|
|
+ */
|
|
|
+ private Double orderJe;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 单剂金额
|
|
|
+ */
|
|
|
+ private Double orderJeDj;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 数量
|
|
|
+ */
|
|
|
+ private Double quantity;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 单剂数量
|
|
|
+ */
|
|
|
+ private Double quantityDj;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * orderCodeDj
|
|
|
+ */
|
|
|
+ private String orderCodeDj;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * doctorCode
|
|
|
+ */
|
|
|
+ private String doctorCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * inputId
|
|
|
+ */
|
|
|
+ private String inputId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * inputDate
|
|
|
+ */
|
|
|
+ private Date inputDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * chargeId
|
|
|
+ */
|
|
|
+ private String chargeId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * chargeDate
|
|
|
+ */
|
|
|
+ private Date chargeDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * confirmId
|
|
|
+ */
|
|
|
+ private String confirmId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * confirmDate
|
|
|
+ */
|
|
|
+ private Date confirmDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 药单号
|
|
|
+ */
|
|
|
+ private Integer pageNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * statusFlag
|
|
|
+ */
|
|
|
+ private String statusFlag;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 申请科室
|
|
|
+ */
|
|
|
+ private String deptCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 申请病房
|
|
|
+ */
|
|
|
+ private String wardCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * printId
|
|
|
+ */
|
|
|
+ private String printId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * cyMtjs
|
|
|
+ */
|
|
|
+ private Integer cyMtjs;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * cyJsl
|
|
|
+ */
|
|
|
+ private Integer cyJsl;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * cyZql
|
|
|
+ */
|
|
|
+ private Integer cyZql;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * cyFj
|
|
|
+ */
|
|
|
+ private Integer cyFj;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * cyFfcs
|
|
|
+ */
|
|
|
+ private Integer cyFfcs;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * cyFysm
|
|
|
+ */
|
|
|
+ private Integer cyFysm;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * cyJssm
|
|
|
+ */
|
|
|
+ private String cyJssm;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * submitId
|
|
|
+ */
|
|
|
+ private String submitId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * submitDate
|
|
|
+ */
|
|
|
+ private Date submitDate;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * execDept
|
|
|
+ */
|
|
|
+ private String execDept;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 药房 草药,中药颗粒
|
|
|
+ */
|
|
|
+ private String groupNo;
|
|
|
+
|
|
|
+}
|