0027005599 2 éve
szülő
commit
d4d7090a30

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

@@ -108,7 +108,11 @@ public class MidIncidentVisitLog implements Serializable {
     @Excel(name = "过敏史", width = 15)
     @ApiModelProperty(value = "过敏史")
     private String allergies;
-	/**项目总金额;*/
+    @Excel(name = "险种类别;1.医疗、2.工伤、3.生育", width = 15)
+    @ApiModelProperty(value = "险种类别;1.医疗、2.工伤、3.生育")
+    private String insuranceType;
+
+    /**项目总金额;*/
 	@Excel(name = "项目总金额;", width = 15)
     @ApiModelProperty(value = "项目总金额;")
     private java.lang.Double totoalAmount;

+ 1 - 0
jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/medical/ruleengine/RuleEngine.java

@@ -344,6 +344,7 @@ public class RuleEngine {
         midIncidentVisitLog.setPatientGender(midIncidentWarningVO.getPatient_gender());
         midIncidentVisitLog.setDischargeStatus(midIncidentWarningVO.getDischarge_status());
         midIncidentVisitLog.setTotoalAmount(midIncidentWarningVO.getTotoal_amount());
+        midIncidentVisitLog.setInsuranceType(midIncidentWarningVO.getInsurance_type());
         if (CollectionUtil.isNotEmpty(midIncidentWarningVO.getDiagnoses())) {
             midIncidentVisitLog.setDiagnoses(JSON.toJSONString(midIncidentWarningVO.getDiagnoses()));
         }