|
|
|
@ -24,14 +24,17 @@ public class PcTDoctorQueryByPageResp {
|
|
|
|
|
|
|
|
|
|
/** 编号 */
|
|
|
|
|
@ApiModelProperty("编号")
|
|
|
|
|
@Excel(name = "工作证号")
|
|
|
|
|
private String identifier;
|
|
|
|
|
|
|
|
|
|
/** 名称 */
|
|
|
|
|
@ApiModelProperty("名称")
|
|
|
|
|
@Excel(name = "名称")
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
/** 电话 */
|
|
|
|
|
@ApiModelProperty("电话")
|
|
|
|
|
@Excel(name = "电话")
|
|
|
|
|
private String phone;
|
|
|
|
|
|
|
|
|
|
/** 用户性别(0男 1女 2未知) */
|
|
|
|
@ -70,10 +73,14 @@ public class PcTDoctorQueryByPageResp {
|
|
|
|
|
@ApiModelProperty("医院id")
|
|
|
|
|
private Long hospitalId;
|
|
|
|
|
|
|
|
|
|
/** 删除标志(0代表存在 2代表删除) */
|
|
|
|
|
@ApiModelProperty("删除标志(0代表存在 2代表删除) ")
|
|
|
|
|
private String delFlag;
|
|
|
|
|
|
|
|
|
|
/** 创建时间 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@ApiModelProperty("创建时间")
|
|
|
|
|
@Excel(name = "注册时间")
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
|
|
|
|
/** 更新时间 */
|
|
|
|
@ -82,14 +89,17 @@ public class PcTDoctorQueryByPageResp {
|
|
|
|
|
private Date updateTime;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("患者个数")
|
|
|
|
|
@Excel(name = "患者个数")
|
|
|
|
|
private int countPatints;
|
|
|
|
|
|
|
|
|
|
/** 最近一次就诊时间 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
@ApiModelProperty("最近一次就诊时间")
|
|
|
|
|
@Excel(name = "最近一次就诊时间")
|
|
|
|
|
private Date latestTime;
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty("诊断次数")
|
|
|
|
|
@Excel(name = "诊断次数")
|
|
|
|
|
private int countRecords;
|
|
|
|
|
|
|
|
|
|
public int getCountRecords() {
|
|
|
|
@ -244,6 +254,14 @@ public class PcTDoctorQueryByPageResp {
|
|
|
|
|
this.countPatints = countPatints;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDelFlag() {
|
|
|
|
|
return delFlag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDelFlag(String delFlag) {
|
|
|
|
|
this.delFlag = delFlag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return "PcTDoctorQueryByPageResp{" +
|
|
|
|
@ -261,6 +279,7 @@ public class PcTDoctorQueryByPageResp {
|
|
|
|
|
", medicalLicense='" + medicalLicense + '\'' +
|
|
|
|
|
", qrCode='" + qrCode + '\'' +
|
|
|
|
|
", hospitalId=" + hospitalId +
|
|
|
|
|
", delFlag='" + delFlag + '\'' +
|
|
|
|
|
", createTime=" + createTime +
|
|
|
|
|
", updateTime=" + updateTime +
|
|
|
|
|
", countPatints=" + countPatints +
|
|
|
|
|