Browse Source

食物药物过敏史对象信息描述

louhr 5 years ago
parent
commit
d0e8a3461b

+ 7 - 0
public/src/main/java/com/lantone/qc/pub/model/entity/AllergyFood.java

@@ -1,10 +1,17 @@
 package com.lantone.qc.pub.model.entity;
 
+import lombok.Getter;
+import lombok.Setter;
+
 /**
  * @ClassName : AllergyFood
  * @Description : 食物过敏原
  * @Author : 楼辉荣
  * @Date: 2020-03-05 19:06
  */
+@Setter
+@Getter
 public class AllergyFood extends General {
+    private PD pd;  //时间
+    private Degree degree; //程度
 }

+ 7 - 0
public/src/main/java/com/lantone/qc/pub/model/entity/AllergyMedicine.java

@@ -1,10 +1,17 @@
 package com.lantone.qc.pub.model.entity;
 
+import lombok.Getter;
+import lombok.Setter;
+
 /**
  * @ClassName : AllergyMedicine
  * @Description : 药物过敏原
  * @Author : 楼辉荣
  * @Date: 2020-03-05 19:07
  */
+@Setter
+@Getter
 public class AllergyMedicine extends General {
+    private PD pd;  //时间
+    private Degree degree; //程度
 }