瀏覽代碼

事中表添加字段

0027005599 2 年之前
父節點
當前提交
8758d3ff4a

+ 28 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/entity/MidIncidentAudit.java

@@ -19,6 +19,8 @@ import io.swagger.annotations.ApiModelProperty;
 import lombok.EqualsAndHashCode;
 import lombok.experimental.Accessors;
 
+import javax.validation.constraints.NotBlank;
+
 /**
  * @Description: mid_incident_audit
  * @Author: jeecg-boot
@@ -83,10 +85,36 @@ public class MidIncidentAudit implements Serializable {
     @Excel(name = "病人年龄;", width = 15)
     @ApiModelProperty(value = "病人年龄;")
     private java.lang.String patientAge;
+
     /**病人性别;*/
     @Excel(name = "病人性别;", width = 15)
     @ApiModelProperty(value = "病人性别;")
     private java.lang.String patientGender;
+//    inpatient_area	true	char	20	病区
+    /**
+     * 就诊类型为住院时候必填
+     */
+    /**病人性别;*/
+    @Excel(name = "病区;就诊类型为住院时候必填", width = 15)
+    @ApiModelProperty(value = "病区;就诊类型为住院时候必填")
+    private String inpatientArea;
+
+//    number_beds	true	char	10	床位号;护士办理入院时候必填
+    /**
+     * 就诊类型为住院时候必填
+     */
+    @Excel(name = "床位号;护士办理入院时候必填", width = 15)
+    @ApiModelProperty(value = "床位号;护士办理入院时候必填")
+    private String numberBeds;
+//    allergies	true	char	200	过敏史
+    /**
+     * 就诊类型为住院时候必填
+     * 过敏史
+     */
+    @Excel(name = "过敏史", width = 15)
+    @ApiModelProperty(value = "过敏史")
+    private String allergies;
+
 	/**住院号/门诊号*/
 	@Excel(name = "住院号/门诊号", width = 15)
     @ApiModelProperty(value = "住院号/门诊号")

+ 20 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/entity/MidIncidentVisitLog.java

@@ -88,6 +88,26 @@ public class MidIncidentVisitLog implements Serializable {
 	@Excel(name = "病人性别;", width = 15)
     @ApiModelProperty(value = "病人性别;")
     private java.lang.String patientGender;
+    /**病人性别;*/
+    @Excel(name = "病区;就诊类型为住院时候必填", width = 15)
+    @ApiModelProperty(value = "病区;就诊类型为住院时候必填")
+    private String inpatientArea;
+
+//    number_beds	true	char	10	床位号;护士办理入院时候必填
+    /**
+     * 就诊类型为住院时候必填
+     */
+    @Excel(name = "床位号;护士办理入院时候必填", width = 15)
+    @ApiModelProperty(value = "床位号;护士办理入院时候必填")
+    private String numberBeds;
+//    allergies	true	char	200	过敏史
+    /**
+     * 就诊类型为住院时候必填
+     * 过敏史
+     */
+    @Excel(name = "过敏史", width = 15)
+    @ApiModelProperty(value = "过敏史")
+    private String allergies;
 	/**项目总金额;*/
 	@Excel(name = "项目总金额;", width = 15)
     @ApiModelProperty(value = "项目总金额;")

+ 17 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/entity/MidIncidentWarningVO.java

@@ -65,6 +65,23 @@ public class MidIncidentWarningVO {
      */
     @NotBlank(message = "医师级别不能为空")
     private String doctor_level;
+//    inpatient_area	true	char	20	病区
+    /**
+     * 就诊类型为住院时候必填
+     */
+    private String inpatient_area;
+
+//    number_beds	true	char	10	床位号;护士办理入院时候必填
+    /**
+     * 就诊类型为住院时候必填
+     */
+    private String number_beds;
+//    allergies	true	char	200	过敏史
+    /**
+     * 就诊类型为住院时候必填
+     * 过敏史
+     */
+    private String allergies;
     /**
      * 所有项目总金额
      */