|
@@ -69,47 +69,55 @@ public class FsCompanyCustomer extends BaseEntity {
|
|
|
private String doctorName;
|
|
private String doctorName;
|
|
|
|
|
|
|
|
/** 现病史 */
|
|
/** 现病史 */
|
|
|
- @Excel(name = "现病史")
|
|
|
|
|
|
|
+ //@Excel(name = "现病史")
|
|
|
private String presentIllness;
|
|
private String presentIllness;
|
|
|
|
|
|
|
|
/** 现用药情况 */
|
|
/** 现用药情况 */
|
|
|
- @Excel(name = "现用药情况")
|
|
|
|
|
|
|
+ //@Excel(name = "现用药情况")
|
|
|
private String currentMedication;
|
|
private String currentMedication;
|
|
|
|
|
|
|
|
/** 过敏史 */
|
|
/** 过敏史 */
|
|
|
- @Excel(name = "过敏史")
|
|
|
|
|
|
|
+ //@Excel(name = "过敏史")
|
|
|
private String allergyHistory;
|
|
private String allergyHistory;
|
|
|
|
|
|
|
|
/** 导入会员id*/
|
|
/** 导入会员id*/
|
|
|
private Long importMemberId;
|
|
private Long importMemberId;
|
|
|
|
|
|
|
|
//购买次数
|
|
//购买次数
|
|
|
|
|
+ @Excel(name = "购买次数")
|
|
|
private Long buyCount;
|
|
private Long buyCount;
|
|
|
|
|
|
|
|
//认领状态0:未认领,1:已认领
|
|
//认领状态0:未认领,1:已认领
|
|
|
|
|
+ @Excel(name = "认领状态", readConverterExp = "0=未认领,1=已认领")
|
|
|
private Integer claimStatus;
|
|
private Integer claimStatus;
|
|
|
|
|
|
|
|
//完善状态0:未完善,1:已完善
|
|
//完善状态0:未完善,1:已完善
|
|
|
|
|
+ @Excel(name = "完善状态", readConverterExp = "0=未完善,1=已完善")
|
|
|
private Integer completeStatus;
|
|
private Integer completeStatus;
|
|
|
|
|
|
|
|
//归属部门id
|
|
//归属部门id
|
|
|
private Long deptId;
|
|
private Long deptId;
|
|
|
|
|
|
|
|
//归属部门名称
|
|
//归属部门名称
|
|
|
|
|
+ @Excel(name = "所属部门")
|
|
|
private String deptName;
|
|
private String deptName;
|
|
|
|
|
|
|
|
//口袋助理-加微状态0:未加,1:已加
|
|
//口袋助理-加微状态0:未加,1:已加
|
|
|
|
|
+ @Excel(name = "加微状态", readConverterExp = "0=未加,1=已加")
|
|
|
private Integer kdzlAddWechatStatus;
|
|
private Integer kdzlAddWechatStatus;
|
|
|
|
|
|
|
|
//口袋助理-成交状态0:未成交,1:已成交
|
|
//口袋助理-成交状态0:未成交,1:已成交
|
|
|
|
|
+ @Excel(name = "成交状态", readConverterExp = "0=未成交,1=已成交")
|
|
|
private Integer kdzlMakeStatus;
|
|
private Integer kdzlMakeStatus;
|
|
|
|
|
|
|
|
//口袋助理-通话状态,第三方返回的纯文字描述
|
|
//口袋助理-通话状态,第三方返回的纯文字描述
|
|
|
|
|
+ @Excel(name = "通话状态")
|
|
|
private String kdzlCallStatus;
|
|
private String kdzlCallStatus;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 流程状态 0-待完善 1-待开方 2-开方中 3-待审核 4-已开方 5-已拒方 6-已完成
|
|
* 流程状态 0-待完善 1-待开方 2-开方中 3-待审核 4-已开方 5-已拒方 6-已完成
|
|
|
*/
|
|
*/
|
|
|
|
|
+ @Excel(name = "流程状态", readConverterExp = "0=待完善,1=待开方,2=开方中,3=待审核,4=已开方,5=已拒方,6=已完成")
|
|
|
private Integer processStatus;
|
|
private Integer processStatus;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -117,6 +125,16 @@ public class FsCompanyCustomer extends BaseEntity {
|
|
|
*/
|
|
*/
|
|
|
private Long prescribeId;
|
|
private Long prescribeId;
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 模板ID
|
|
|
|
|
+ */
|
|
|
|
|
+ private Long templateId;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * json信息
|
|
|
|
|
+ */
|
|
|
|
|
+ private String jsonInfo;
|
|
|
|
|
+
|
|
|
//以下字段(非数据库字段,用于接收查询参数)
|
|
//以下字段(非数据库字段,用于接收查询参数)
|
|
|
|
|
|
|
|
/*** 认领号码*/
|
|
/*** 认领号码*/
|