瀏覽代碼

修复Doctor Bean的属性方法

Sand 8 年之前
父節點
當前提交
31456d4d34
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/main/java/com/yihu/wlyy/entity/doctor/profile/Doctor.java

+ 4 - 4
src/main/java/com/yihu/wlyy/entity/doctor/profile/Doctor.java

@ -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() {