|
@ -51,8 +51,8 @@ public class Doctor extends IdEntity {
|
|
|
|
|
|
private Integer level; // 类型:1专科医生,2全科医生,3健康管理师
|
|
|
private Integer iscertified; // 资格是否认证通过,1是,0否
|
|
|
|
|
|
private String qrcode; // 二维码
|
|
|
|
|
|
private String qrcode; // 二维码
|
|
|
|
|
|
private Date czrq; // 更新时间
|
|
|
private Integer del; // 状态(1正常,0删除)
|
|
@ -263,12 +263,12 @@ public class Doctor extends IdEntity {
|
|
|
}
|
|
|
|
|
|
@Column(name = "iscertified")
|
|
|
public Integer getIsCertified() {
|
|
|
public Integer getIscertified() {
|
|
|
return iscertified;
|
|
|
}
|
|
|
|
|
|
public void setIscertified(Integer isCertified) {
|
|
|
this.iscertified = iscertified;
|
|
|
this.iscertified = isCertified;
|
|
|
}
|
|
|
|
|
|
public String getQrcode() {
|