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