|
@ -0,0 +1,45 @@
|
|
|
package com.yihu.wlyy.entity.call;
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2017/11/9.
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "manage_call_service")
|
|
|
public class CallService extends IdEntity {
|
|
|
|
|
|
private String code; //服务编号
|
|
|
private String callCode; //关联通话记录
|
|
|
private Integer serverType; //服务类型:0.医生咨询,1.预约挂号
|
|
|
private String patient; //服务对象(患者code)
|
|
|
private String patientName; // 服务对象名称(患者名称)
|
|
|
private String ssc; // 社保卡号
|
|
|
private String Idcard; // 居民身份证号
|
|
|
private String phone; // 手机号
|
|
|
private String doctor; // 医生code
|
|
|
private String doctorName; //医生姓名
|
|
|
private String serverContent; //服务内容
|
|
|
private Integer state; //订单状态:0.草稿,1.待处理,2.完成
|
|
|
private Date createTime; //创建时间
|
|
|
private Date updateTime; //更新时间
|
|
|
private String remark; //备注
|
|
|
private Integer type; //服务类型:0.咨询,2.预约
|
|
|
private Integer dealType; //处理方式:1.电话回复,2.客服回复
|
|
|
private Date dealTime; //处理时间
|
|
|
private Integer dealState; // 处理结果:1.完成,2.无法联系居民
|
|
|
private String dealContent; // 处理内容
|
|
|
private Integer dealReason; // 处理取消原因:0.没有号源、1.病人取消
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
}
|