|
@ -49,6 +49,11 @@ public class WlyyDoctorWorkTimeVO {
|
|
|
private Date createTime;//创建时间',
|
|
|
@ApiModelProperty(value = "当前号源数目", example = "模块1")
|
|
|
private Integer count;
|
|
|
@ApiModelProperty(value = "创建人", example = "模块1")
|
|
|
private String createUser;//创建人
|
|
|
@ApiModelProperty(value = "创建人类型1医院2医生", example = "模块1")
|
|
|
private Integer createUserType;//创建人类型1医院2医生
|
|
|
|
|
|
|
|
|
public String getId() {
|
|
|
return id;
|
|
@ -201,4 +206,20 @@ public class WlyyDoctorWorkTimeVO {
|
|
|
public void setSourceNumber(Integer sourceNumber) {
|
|
|
this.sourceNumber = sourceNumber;
|
|
|
}
|
|
|
|
|
|
public String getCreateUser() {
|
|
|
return createUser;
|
|
|
}
|
|
|
|
|
|
public void setCreateUser(String createUser) {
|
|
|
this.createUser = createUser;
|
|
|
}
|
|
|
|
|
|
public Integer getCreateUserType() {
|
|
|
return createUserType;
|
|
|
}
|
|
|
|
|
|
public void setCreateUserType(Integer createUserType) {
|
|
|
this.createUserType = createUserType;
|
|
|
}
|
|
|
}
|