|
@ -175,23 +175,6 @@ public class BasePatientDO extends UuidIdentityEntityWithOperator {
|
|
|
*/
|
|
|
private String recordAmount;
|
|
|
|
|
|
/**
|
|
|
* 微信编号
|
|
|
*/
|
|
|
private String openid;
|
|
|
|
|
|
/**
|
|
|
* i健康微信编号
|
|
|
*/
|
|
|
private String ihealthOpenid;
|
|
|
|
|
|
/**
|
|
|
* i健康微信编号添加时间
|
|
|
*/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
private Date ihealthOpenidTime;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 用户状态:1正常,0禁用,-1恶意注册,2审核中
|
|
|
*/
|
|
@ -202,12 +185,6 @@ public class BasePatientDO extends UuidIdentityEntityWithOperator {
|
|
|
*/
|
|
|
private String mobileRemarks;
|
|
|
|
|
|
/**
|
|
|
* 第一次添加open的时间
|
|
|
*/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
private Date openidTime;
|
|
|
|
|
|
/**
|
|
|
* 绑定电子社保卡主体(共济为操作人code,医社保关联patient_medicare_card)
|
|
|
*/
|
|
@ -458,15 +435,6 @@ public class BasePatientDO extends UuidIdentityEntityWithOperator {
|
|
|
this.recordAmount = recordAmount;
|
|
|
}
|
|
|
|
|
|
@Column(name = "openid")
|
|
|
public String getOpenid() {
|
|
|
return openid;
|
|
|
}
|
|
|
|
|
|
public void setOpenid(String openid) {
|
|
|
this.openid = openid;
|
|
|
}
|
|
|
|
|
|
@Column(name = "patient_status")
|
|
|
public String getPatientStatus() {
|
|
|
return patientStatus;
|
|
@ -485,15 +453,6 @@ public class BasePatientDO extends UuidIdentityEntityWithOperator {
|
|
|
this.mobileRemarks = mobileRemarks;
|
|
|
}
|
|
|
|
|
|
@Column(name = "openid_time")
|
|
|
public Date getOpenidTime() {
|
|
|
return openidTime;
|
|
|
}
|
|
|
|
|
|
public void setOpenidTime(Date openidTime) {
|
|
|
this.openidTime = openidTime;
|
|
|
}
|
|
|
|
|
|
@Column(name = "principal_code")
|
|
|
public String getPrincipalCode() {
|
|
|
return principalCode;
|
|
@ -645,21 +604,4 @@ public class BasePatientDO extends UuidIdentityEntityWithOperator {
|
|
|
this.loginDate = loginDate;
|
|
|
}
|
|
|
|
|
|
@Column(name = "ihealth_openid")
|
|
|
public String getIhealthOpenid() {
|
|
|
return ihealthOpenid;
|
|
|
}
|
|
|
|
|
|
public void setIhealthOpenid(String ihealthOpenid) {
|
|
|
this.ihealthOpenid = ihealthOpenid;
|
|
|
}
|
|
|
|
|
|
@Column(name = "ihealth_openid_time")
|
|
|
public Date getIhealthOpenidTime() {
|
|
|
return ihealthOpenidTime;
|
|
|
}
|
|
|
|
|
|
public void setIhealthOpenidTime(Date ihealthOpenidTime) {
|
|
|
this.ihealthOpenidTime = ihealthOpenidTime;
|
|
|
}
|
|
|
}
|