|
@ -1,10 +1,12 @@
|
|
|
package com.yihu.jw.restmodel.specialist;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
@ -40,6 +42,9 @@ public class SpecialistTeamVO {
|
|
|
private String hospitalName;
|
|
|
@ApiModelProperty("医生团队成员")
|
|
|
private List<AdminTeamMemberVO> members;
|
|
|
@ApiModelProperty("签约时间")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
private Date signDate;
|
|
|
|
|
|
|
|
|
public String getPatient() {
|
|
@ -145,4 +150,13 @@ public class SpecialistTeamVO {
|
|
|
public void setMembers(List<AdminTeamMemberVO> members) {
|
|
|
this.members = members;
|
|
|
}
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
public Date getSignDate() {
|
|
|
return signDate;
|
|
|
}
|
|
|
|
|
|
public void setSignDate(Date signDate) {
|
|
|
this.signDate = signDate;
|
|
|
}
|
|
|
}
|