|
@ -5,6 +5,7 @@ import java.util.Date;
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
@ -41,6 +42,7 @@ public class ConsultTeam extends IdEntity {
|
|
|
private String del; // 作废标识,1正常,0作废
|
|
|
private Long adminTeamId;//行政团队ID
|
|
|
private Long guidance; //关联指导
|
|
|
private String doctorName;//醫生名字
|
|
|
|
|
|
@Column(name = "admin_team_code")
|
|
|
public Long getAdminTeamId() {
|
|
@ -229,7 +231,14 @@ public class ConsultTeam extends IdEntity {
|
|
|
public void setSex(Integer sex) {
|
|
|
this.sex = sex;
|
|
|
}
|
|
|
@Transient
|
|
|
public String getDoctorName() {
|
|
|
return doctorName;
|
|
|
}
|
|
|
|
|
|
public void setDoctorName(String doctorName) {
|
|
|
this.doctorName = doctorName;
|
|
|
}
|
|
|
|
|
|
public Long getGuidance() {
|
|
|
return guidance;
|