|
@ -0,0 +1,317 @@
|
|
|
package com.yihu.wlyy.web.gateway.vo;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by chenweida on 2017/8/17.
|
|
|
*/
|
|
|
@ApiModel("医生实体")
|
|
|
public class DoctorModel {
|
|
|
|
|
|
@ApiModelProperty(value = "主键", required = false, access = "response")
|
|
|
private String code; // 业务主键
|
|
|
@ApiModelProperty(value = "姓名", required = false, access = "response")
|
|
|
private String name; //姓名
|
|
|
@ApiModelProperty(value = "性别(1男,2女)", required = false, access = "response")
|
|
|
private Integer sex; // 性别(1男,2女)
|
|
|
@ApiModelProperty(value = "生日", required = false, access = "response")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
private Date birthday; //生日
|
|
|
@ApiModelProperty(value = "头像http地址", required = false, access = "response")
|
|
|
private String photo; //头像http地址
|
|
|
@ApiModelProperty(value = "手机号", required = false, access = "response")
|
|
|
private String mobile; //手机号
|
|
|
@ApiModelProperty(value = "省code", required = false, access = "response")
|
|
|
private String province; //省code
|
|
|
@ApiModelProperty(value = "市code", required = false, access = "response")
|
|
|
private String city; //市code
|
|
|
@ApiModelProperty(value = "区县code", required = false, access = "response")
|
|
|
private String town; //区县code
|
|
|
@ApiModelProperty(value = "省名称", required = false, access = "response")
|
|
|
private String provinceName;//省名称
|
|
|
@ApiModelProperty(value = "市名称", required = false, access = "response")
|
|
|
private String cityName; //市名称
|
|
|
@ApiModelProperty(value = "区县名称", required = false, access = "response")
|
|
|
private String townName; //区县名称
|
|
|
@ApiModelProperty(value = "医院代码", required = false, access = "response")
|
|
|
private String hospital; // 医院代码
|
|
|
@ApiModelProperty(value = "医院名称", required = false, access = "response")
|
|
|
private String hospitalName; //医院名称
|
|
|
@ApiModelProperty(value = "科室代码", required = false, access = "response")
|
|
|
private String dept; // 科室代码
|
|
|
@ApiModelProperty(value = "科室名称", required = false, access = "response")
|
|
|
private String deptName; //可是名称
|
|
|
@ApiModelProperty(value = "职称代码", required = false, access = "response")
|
|
|
private String job; // 职称代码
|
|
|
@ApiModelProperty(value = "职称名", required = false, access = "response")
|
|
|
private String jobName; // 职称名
|
|
|
@ApiModelProperty(value = "医生专长", required = false, access = "response")
|
|
|
private String expertise; // 医生专长
|
|
|
@ApiModelProperty(value = "医生介绍", required = false, access = "response")
|
|
|
private String introduce; // 医生介绍
|
|
|
@ApiModelProperty(value = "1专科医生,2全科医生,3健康管理师", required = false, access = "response")
|
|
|
private Integer level; // 类型:1专科医生,2全科医生,3健康管理师
|
|
|
@ApiModelProperty(value = "资格是否认证通过,1是,0否", required = false, access = "response")
|
|
|
private Integer iscertified; // 资格是否认证通过,1是,0否
|
|
|
@ApiModelProperty(value = "二维码", required = false, access = "response")
|
|
|
private String qrcode; // 二维码
|
|
|
@ApiModelProperty(value = "身份证号", required = false, access = "response")
|
|
|
private String idcard; //身份证号
|
|
|
@ApiModelProperty(value = "是否是名医", required = false, access = "response")
|
|
|
private Integer isFamous; //是否是名医 1是 0或者空不是
|
|
|
@ApiModelProperty(value = "评分", required = false, access = "response")
|
|
|
private Double evaluateScore;//评分
|
|
|
@ApiModelProperty(value = "审方密码", required = false, access = "response")
|
|
|
private String checkPassword; //审方密码
|
|
|
@ApiModelProperty(value = "审方密码的盐", required = false, access = "response")
|
|
|
private String checkSalt; //审方密码的盐
|
|
|
@ApiModelProperty(value = "CA证书过期时间", required = false, access = "response")
|
|
|
private Date certifiedOvertime; //CA证书过期时间
|
|
|
@ApiModelProperty(value = "CA证书编号", required = false, access = "response")
|
|
|
private String certificateNum; //CA证书编号
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
public Integer getSex() {
|
|
|
return sex;
|
|
|
}
|
|
|
|
|
|
public void setSex(Integer sex) {
|
|
|
this.sex = sex;
|
|
|
}
|
|
|
|
|
|
public Date getBirthday() {
|
|
|
return birthday;
|
|
|
}
|
|
|
|
|
|
public void setBirthday(Date birthday) {
|
|
|
this.birthday = birthday;
|
|
|
}
|
|
|
|
|
|
public String getPhoto() {
|
|
|
return photo;
|
|
|
}
|
|
|
|
|
|
public void setPhoto(String photo) {
|
|
|
this.photo = photo;
|
|
|
}
|
|
|
|
|
|
public String getMobile() {
|
|
|
return mobile;
|
|
|
}
|
|
|
|
|
|
public void setMobile(String mobile) {
|
|
|
this.mobile = mobile;
|
|
|
}
|
|
|
|
|
|
|
|
|
public String getProvince() {
|
|
|
return province;
|
|
|
}
|
|
|
|
|
|
public void setProvince(String province) {
|
|
|
this.province = province;
|
|
|
}
|
|
|
|
|
|
public String getCity() {
|
|
|
return city;
|
|
|
}
|
|
|
|
|
|
public void setCity(String city) {
|
|
|
this.city = city;
|
|
|
}
|
|
|
|
|
|
public String getTown() {
|
|
|
return town;
|
|
|
}
|
|
|
|
|
|
public void setTown(String town) {
|
|
|
this.town = town;
|
|
|
}
|
|
|
|
|
|
public String getProvinceName() {
|
|
|
return provinceName;
|
|
|
}
|
|
|
|
|
|
public void setProvinceName(String provinceName) {
|
|
|
this.provinceName = provinceName;
|
|
|
}
|
|
|
|
|
|
public String getCityName() {
|
|
|
return cityName;
|
|
|
}
|
|
|
|
|
|
public void setCityName(String cityName) {
|
|
|
this.cityName = cityName;
|
|
|
}
|
|
|
|
|
|
public String getTownName() {
|
|
|
return townName;
|
|
|
}
|
|
|
|
|
|
public void setTownName(String townName) {
|
|
|
this.townName = townName;
|
|
|
}
|
|
|
|
|
|
public String getHospital() {
|
|
|
return hospital;
|
|
|
}
|
|
|
|
|
|
public void setHospital(String hospital) {
|
|
|
this.hospital = hospital;
|
|
|
}
|
|
|
|
|
|
public String getHospitalName() {
|
|
|
return hospitalName;
|
|
|
}
|
|
|
|
|
|
public void setHospitalName(String hospitalName) {
|
|
|
this.hospitalName = hospitalName;
|
|
|
}
|
|
|
|
|
|
public String getDept() {
|
|
|
return dept;
|
|
|
}
|
|
|
|
|
|
public void setDept(String dept) {
|
|
|
this.dept = dept;
|
|
|
}
|
|
|
|
|
|
public String getDeptName() {
|
|
|
return deptName;
|
|
|
}
|
|
|
|
|
|
public void setDeptName(String deptName) {
|
|
|
this.deptName = deptName;
|
|
|
}
|
|
|
|
|
|
public String getJob() {
|
|
|
return job;
|
|
|
}
|
|
|
|
|
|
public void setJob(String job) {
|
|
|
this.job = job;
|
|
|
}
|
|
|
|
|
|
public String getJobName() {
|
|
|
return jobName;
|
|
|
}
|
|
|
|
|
|
public void setJobName(String jobName) {
|
|
|
this.jobName = jobName;
|
|
|
}
|
|
|
|
|
|
public String getExpertise() {
|
|
|
return expertise;
|
|
|
}
|
|
|
|
|
|
public void setExpertise(String expertise) {
|
|
|
this.expertise = expertise;
|
|
|
}
|
|
|
|
|
|
public String getIntroduce() {
|
|
|
return introduce;
|
|
|
}
|
|
|
|
|
|
public void setIntroduce(String introduce) {
|
|
|
this.introduce = introduce;
|
|
|
}
|
|
|
|
|
|
public Integer getLevel() {
|
|
|
return level;
|
|
|
}
|
|
|
|
|
|
public void setLevel(Integer level) {
|
|
|
this.level = level;
|
|
|
}
|
|
|
|
|
|
public Integer getIscertified() {
|
|
|
return iscertified;
|
|
|
}
|
|
|
|
|
|
public void setIscertified(Integer iscertified) {
|
|
|
this.iscertified = iscertified;
|
|
|
}
|
|
|
|
|
|
public String getQrcode() {
|
|
|
return qrcode;
|
|
|
}
|
|
|
|
|
|
public void setQrcode(String qrcode) {
|
|
|
this.qrcode = qrcode;
|
|
|
}
|
|
|
|
|
|
public String getIdcard() {
|
|
|
return idcard;
|
|
|
}
|
|
|
|
|
|
public void setIdcard(String idcard) {
|
|
|
this.idcard = idcard;
|
|
|
}
|
|
|
|
|
|
public Integer getIsFamous() {
|
|
|
return isFamous;
|
|
|
}
|
|
|
|
|
|
public void setIsFamous(Integer isFamous) {
|
|
|
this.isFamous = isFamous;
|
|
|
}
|
|
|
|
|
|
public Double getEvaluateScore() {
|
|
|
return evaluateScore;
|
|
|
}
|
|
|
|
|
|
public void setEvaluateScore(Double evaluateScore) {
|
|
|
this.evaluateScore = evaluateScore;
|
|
|
}
|
|
|
|
|
|
public String getCheckPassword() {
|
|
|
return checkPassword;
|
|
|
}
|
|
|
|
|
|
public void setCheckPassword(String checkPassword) {
|
|
|
this.checkPassword = checkPassword;
|
|
|
}
|
|
|
|
|
|
public String getCheckSalt() {
|
|
|
return checkSalt;
|
|
|
}
|
|
|
|
|
|
public void setCheckSalt(String checkSalt) {
|
|
|
this.checkSalt = checkSalt;
|
|
|
}
|
|
|
|
|
|
public Date getCertifiedOvertime() {
|
|
|
return certifiedOvertime;
|
|
|
}
|
|
|
|
|
|
public void setCertifiedOvertime(Date certifiedOvertime) {
|
|
|
this.certifiedOvertime = certifiedOvertime;
|
|
|
}
|
|
|
|
|
|
public String getCertificateNum() {
|
|
|
return certificateNum;
|
|
|
}
|
|
|
|
|
|
public void setCertificateNum(String certificateNum) {
|
|
|
this.certificateNum = certificateNum;
|
|
|
}
|
|
|
}
|