瀏覽代碼

患者签约

trick9191 7 年之前
父節點
當前提交
e1edc8b08f
共有 1 個文件被更改,包括 10 次插入0 次删除
  1. 10 0
      common/common-entity/src/main/java/com/yihu/wlyy/entity/patient/Patient.java

+ 10 - 0
common/common-entity/src/main/java/com/yihu/wlyy/entity/patient/Patient.java

@ -102,6 +102,8 @@ public class Patient extends IdEntity implements Serializable {
    private Integer wxtagid;
    //居民预警状态:0为标准,1为预警状态
    private Integer standardStatus;
    //医疗保险号
    private String medicareNumber;
    public String getPrincipalCode() {
        return principalCode;
@ -457,4 +459,12 @@ public class Patient extends IdEntity implements Serializable {
    public Patient(String code) {
        this.code = code;
    }
    public String getMedicareNumber() {
        return medicareNumber;
    }
    public void setMedicareNumber(String medicareNumber) {
        this.medicareNumber = medicareNumber;
    }
}