|
@ -0,0 +1,197 @@
|
|
|
package com.yihu.wlyy.entity.synergy;
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by 刘文彬 on 2018/10/8.
|
|
|
* 催单记录表
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "manage_synergy_workorder_reminder")
|
|
|
public class ManageSynergyWorkordeReminderDO extends IdEntity {
|
|
|
private String code;
|
|
|
private String workorderCode;//协同服务工单code
|
|
|
private String servicePatientCode;//协同服务对象code
|
|
|
private String createUser;//创建人code
|
|
|
private String createUserName;//创建者姓名
|
|
|
private Integer createUserType;//创建人类型(1、医生,2、客服,3、客服负责人)
|
|
|
private String hospital;//创建人所属机构code
|
|
|
private String hospitalName;//创建人所属机构的名称
|
|
|
private Date createTime;//催单时间
|
|
|
private String principalCode;//负责人code
|
|
|
private String principalName;//负责人姓名
|
|
|
private Integer workorderType;//服务类型(0、咨询,1、健康教育,2、预约,3、随访,4、问卷调查,5、疾病筛查)
|
|
|
private String relationCode;//根据workorder_type关联业务code
|
|
|
private String relationCodeName;//关联业务名称
|
|
|
private Date serviceTime;//服务时间
|
|
|
private String servicerKey;//服务对象其中五个人
|
|
|
private String workorderRemark;//备注
|
|
|
private Integer dealWith;//0、未处理,1、已处理
|
|
|
|
|
|
@Column(name = "code")
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
@Column(name = "workorder_code")
|
|
|
public String getWorkorderCode() {
|
|
|
return workorderCode;
|
|
|
}
|
|
|
|
|
|
public void setWorkorderCode(String workorderCode) {
|
|
|
this.workorderCode = workorderCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "service_patient_code")
|
|
|
public String getServicePatientCode() {
|
|
|
return servicePatientCode;
|
|
|
}
|
|
|
|
|
|
public void setServicePatientCode(String servicePatientCode) {
|
|
|
this.servicePatientCode = servicePatientCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "create_user")
|
|
|
public String getCreateUser() {
|
|
|
return createUser;
|
|
|
}
|
|
|
|
|
|
public void setCreateUser(String createUser) {
|
|
|
this.createUser = createUser;
|
|
|
}
|
|
|
|
|
|
@Column(name = "create_user_name")
|
|
|
public String getCreateUserName() {
|
|
|
return createUserName;
|
|
|
}
|
|
|
|
|
|
public void setCreateUserName(String createUserName) {
|
|
|
this.createUserName = createUserName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "create_user_type")
|
|
|
public Integer getCreateUserType() {
|
|
|
return createUserType;
|
|
|
}
|
|
|
|
|
|
public void setCreateUserType(Integer createUserType) {
|
|
|
this.createUserType = createUserType;
|
|
|
}
|
|
|
|
|
|
@Column(name = "hospital")
|
|
|
public String getHospital() {
|
|
|
return hospital;
|
|
|
}
|
|
|
|
|
|
public void setHospital(String hospital) {
|
|
|
this.hospital = hospital;
|
|
|
}
|
|
|
|
|
|
@Column(name = "hospital_name")
|
|
|
public String getHospitalName() {
|
|
|
return hospitalName;
|
|
|
}
|
|
|
|
|
|
public void setHospitalName(String hospitalName) {
|
|
|
this.hospitalName = hospitalName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "create_time")
|
|
|
public Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
|
|
|
@Column(name = "principal_code")
|
|
|
public String getPrincipalCode() {
|
|
|
return principalCode;
|
|
|
}
|
|
|
|
|
|
public void setPrincipalCode(String principalCode) {
|
|
|
this.principalCode = principalCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "principal_name")
|
|
|
public String getPrincipalName() {
|
|
|
return principalName;
|
|
|
}
|
|
|
|
|
|
public void setPrincipalName(String principalName) {
|
|
|
this.principalName = principalName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "workorder_type")
|
|
|
public Integer getWorkorderType() {
|
|
|
return workorderType;
|
|
|
}
|
|
|
|
|
|
public void setWorkorderType(Integer workorderType) {
|
|
|
this.workorderType = workorderType;
|
|
|
}
|
|
|
|
|
|
@Column(name = "relation_code")
|
|
|
public String getRelationCode() {
|
|
|
return relationCode;
|
|
|
}
|
|
|
|
|
|
public void setRelationCode(String relationCode) {
|
|
|
this.relationCode = relationCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "relation_code_name")
|
|
|
public String getRelationCodeName() {
|
|
|
return relationCodeName;
|
|
|
}
|
|
|
|
|
|
public void setRelationCodeName(String relationCodeName) {
|
|
|
this.relationCodeName = relationCodeName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "service_time")
|
|
|
public Date getServiceTime() {
|
|
|
return serviceTime;
|
|
|
}
|
|
|
|
|
|
public void setServiceTime(Date serviceTime) {
|
|
|
this.serviceTime = serviceTime;
|
|
|
}
|
|
|
|
|
|
@Column(name = "servicer_key")
|
|
|
public String getServicerKey() {
|
|
|
return servicerKey;
|
|
|
}
|
|
|
|
|
|
public void setServicerKey(String servicerKey) {
|
|
|
this.servicerKey = servicerKey;
|
|
|
}
|
|
|
|
|
|
@Column(name = "workorder_remark")
|
|
|
public String getWorkorderRemark() {
|
|
|
return workorderRemark;
|
|
|
}
|
|
|
|
|
|
public void setWorkorderRemark(String workorderRemark) {
|
|
|
this.workorderRemark = workorderRemark;
|
|
|
}
|
|
|
|
|
|
@Column(name = "deal_with")
|
|
|
public Integer getDealWith() {
|
|
|
return dealWith;
|
|
|
}
|
|
|
|
|
|
public void setDealWith(Integer dealWith) {
|
|
|
this.dealWith = dealWith;
|
|
|
}
|
|
|
}
|