|
@ -38,6 +38,10 @@ public class PatientSignInfoVO {
|
|
|
private String dept;
|
|
|
@ApiModelProperty("科室")
|
|
|
private String deptName;
|
|
|
@ApiModelProperty("职称")
|
|
|
private String job;
|
|
|
@ApiModelProperty("性别")
|
|
|
private Integer sex;
|
|
|
@ApiModelProperty("团队")
|
|
|
private String teamName;
|
|
|
@ApiModelProperty("团队code")
|
|
@ -215,4 +219,20 @@ public class PatientSignInfoVO {
|
|
|
public void setSsc(String ssc) {
|
|
|
this.ssc = ssc;
|
|
|
}
|
|
|
|
|
|
public String getJob() {
|
|
|
return job;
|
|
|
}
|
|
|
|
|
|
public void setJob(String job) {
|
|
|
this.job = job;
|
|
|
}
|
|
|
|
|
|
public Integer getSex() {
|
|
|
return sex;
|
|
|
}
|
|
|
|
|
|
public void setSex(Integer sex) {
|
|
|
this.sex = sex;
|
|
|
}
|
|
|
}
|