|
@ -24,12 +24,23 @@ public class PrescriptionLog extends IdEntity {
|
|
|
static public Integer expressage = 6; //配送
|
|
|
static public Integer finish = 7; //已完成
|
|
|
}
|
|
|
public final static class PrescriptionLogStatus {
|
|
|
static public Integer no_reviewed =-1; //审核不通过
|
|
|
static public Integer revieweding = 0; //审核中
|
|
|
static public Integer reviewed_success = 10; //审核通过/待支付
|
|
|
static public Integer pay_success = 20; //支付成功/配药中
|
|
|
static public Integer pay_error = 21; //21支付失败
|
|
|
static public Integer wait_expressage = 30; //配药成功/等待领药
|
|
|
static public Integer expressageing = 31; //配送中
|
|
|
static public Integer finish = 100; //结束
|
|
|
|
|
|
}
|
|
|
|
|
|
private String code; //业务流程
|
|
|
private String prescriptionCode; //处方code 关联表wlyy_prescription code
|
|
|
private Date createTime; //处方创建时间
|
|
|
private Integer status; //状态 (-1 审核不通过 , 0 审核中, 10 审核通过/待支付 ,21支付失败 20 配药中/支付成功, 21 等待领药 ,30 配送中 ,100配送成功/已完成)
|
|
|
private Integer type; //类型: 1智业对接 2易联众对接 3创建处方 4 审核 5付款 6 配送 7完成
|
|
|
private Integer status; //状态 (-1 审核不通过 , 0 审核中, 10 审核通过/待支付 ,20 配药中/支付成功 , 21支付失败 , 30 配药成功/等待领药 ,31 配送中 ,100配送成功/已完成)
|
|
|
private Integer type; //类型: 1智业对接 2易联众对接 3创建处方 4 审核 5付款 6 配送 7完成
|
|
|
private String userCode; //医生或者患者code
|
|
|
private String userName; //医生或者患者name
|
|
|
private Integer userType; //1 患者 2医生
|