|
@ -19,6 +19,14 @@ import java.util.Date;
|
|
|
@Table(name = "wlyy_prescription")
|
|
|
public class WlyyPrescriptionDO extends UuidIdentityEntity {
|
|
|
|
|
|
/**
|
|
|
* 门诊记录说
|
|
|
*/
|
|
|
private String outpatientId;
|
|
|
|
|
|
/**
|
|
|
*
|
|
|
*/
|
|
|
private String realOrder;
|
|
|
|
|
|
/**
|
|
@ -172,6 +180,11 @@ public class WlyyPrescriptionDO extends UuidIdentityEntity {
|
|
|
*/
|
|
|
private String reason;
|
|
|
|
|
|
/**
|
|
|
* 病症图片
|
|
|
*/
|
|
|
private String diseaseImg;
|
|
|
|
|
|
/**
|
|
|
* 处方备注
|
|
|
*/
|
|
@ -182,66 +195,19 @@ public class WlyyPrescriptionDO extends UuidIdentityEntity {
|
|
|
*/
|
|
|
private String cancelReason;
|
|
|
|
|
|
/**
|
|
|
* ca加密信息
|
|
|
*/
|
|
|
private String caCertData;
|
|
|
|
|
|
/**
|
|
|
* ca指纹信息
|
|
|
*/
|
|
|
private String caMessage;
|
|
|
|
|
|
/**
|
|
|
* CA数字签名唯一流水号
|
|
|
*/
|
|
|
private String digitalSignNo;
|
|
|
|
|
|
/**
|
|
|
* 原文的MD5摘要
|
|
|
*/
|
|
|
private String originalDataAbstract;
|
|
|
|
|
|
/**
|
|
|
* CA原文数据
|
|
|
*/
|
|
|
private String strOriginalData;
|
|
|
|
|
|
/**
|
|
|
* his-开处方的科室编码
|
|
|
*/
|
|
|
private String hisDeptCode;
|
|
|
|
|
|
/**
|
|
|
* his-开方医生的编码
|
|
|
*/
|
|
|
private String hisDoctorCode;
|
|
|
|
|
|
/**
|
|
|
* his-挂号类型编码
|
|
|
*/
|
|
|
private String hisGisterTypeCode;
|
|
|
|
|
|
/**
|
|
|
* his-费别类型编码
|
|
|
*/
|
|
|
private String hisRateTypeCode;
|
|
|
|
|
|
/**
|
|
|
* his-医院编码
|
|
|
*/
|
|
|
private String hisHospital;
|
|
|
|
|
|
/**
|
|
|
* his-挂号费用
|
|
|
*/
|
|
|
private Integer hisRegisterFee;
|
|
|
|
|
|
/**
|
|
|
* 处方结算状态,0为未结算,1为结算成功,默认为0
|
|
|
*/
|
|
|
private Integer payStatus;
|
|
|
|
|
|
@Column(name = "outpatient_id")
|
|
|
public String getOutpatientId() {
|
|
|
return outpatientId;
|
|
|
}
|
|
|
|
|
|
public void setOutpatientId(String outpatientId) {
|
|
|
this.outpatientId = outpatientId;
|
|
|
}
|
|
|
|
|
|
@Column(name = "real_order")
|
|
|
public String getRealOrder() {
|
|
@ -492,93 +458,6 @@ public class WlyyPrescriptionDO extends UuidIdentityEntity {
|
|
|
this.cancelReason = cancelReason;
|
|
|
}
|
|
|
|
|
|
@Column(name = "ca_cert_data")
|
|
|
public String getCaCertData() {
|
|
|
return caCertData;
|
|
|
}
|
|
|
public void setCaCertData(String caCertData) {
|
|
|
this.caCertData = caCertData;
|
|
|
}
|
|
|
|
|
|
@Column(name = "ca_message")
|
|
|
public String getCaMessage() {
|
|
|
return caMessage;
|
|
|
}
|
|
|
public void setCaMessage(String caMessage) {
|
|
|
this.caMessage = caMessage;
|
|
|
}
|
|
|
|
|
|
@Column(name = "digital_sign_no")
|
|
|
public String getDigitalSignNo() {
|
|
|
return digitalSignNo;
|
|
|
}
|
|
|
public void setDigitalSignNo(String digitalSignNo) {
|
|
|
this.digitalSignNo = digitalSignNo;
|
|
|
}
|
|
|
|
|
|
@Column(name = "original_data_abstract")
|
|
|
public String getOriginalDataAbstract() {
|
|
|
return originalDataAbstract;
|
|
|
}
|
|
|
public void setOriginalDataAbstract(String originalDataAbstract) {
|
|
|
this.originalDataAbstract = originalDataAbstract;
|
|
|
}
|
|
|
|
|
|
@Column(name = "str_original_data")
|
|
|
public String getStrOriginalData() {
|
|
|
return strOriginalData;
|
|
|
}
|
|
|
public void setStrOriginalData(String strOriginalData) {
|
|
|
this.strOriginalData = strOriginalData;
|
|
|
}
|
|
|
|
|
|
@Column(name = "his_dept_code")
|
|
|
public String getHisDeptCode() {
|
|
|
return hisDeptCode;
|
|
|
}
|
|
|
public void setHisDeptCode(String hisDeptCode) {
|
|
|
this.hisDeptCode = hisDeptCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "his_doctor_code")
|
|
|
public String getHisDoctorCode() {
|
|
|
return hisDoctorCode;
|
|
|
}
|
|
|
public void setHisDoctorCode(String hisDoctorCode) {
|
|
|
this.hisDoctorCode = hisDoctorCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "his_gister_type_code")
|
|
|
public String getHisGisterTypeCode() {
|
|
|
return hisGisterTypeCode;
|
|
|
}
|
|
|
public void setHisGisterTypeCode(String hisGisterTypeCode) {
|
|
|
this.hisGisterTypeCode = hisGisterTypeCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "his_rate_type_code")
|
|
|
public String getHisRateTypeCode() {
|
|
|
return hisRateTypeCode;
|
|
|
}
|
|
|
public void setHisRateTypeCode(String hisRateTypeCode) {
|
|
|
this.hisRateTypeCode = hisRateTypeCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "his_hospital")
|
|
|
public String getHisHospital() {
|
|
|
return hisHospital;
|
|
|
}
|
|
|
public void setHisHospital(String hisHospital) {
|
|
|
this.hisHospital = hisHospital;
|
|
|
}
|
|
|
|
|
|
@Column(name = "his_register_fee")
|
|
|
public Integer getHisRegisterFee() {
|
|
|
return hisRegisterFee;
|
|
|
}
|
|
|
public void setHisRegisterFee(Integer hisRegisterFee) {
|
|
|
this.hisRegisterFee = hisRegisterFee;
|
|
|
}
|
|
|
|
|
|
@Column(name = "pay_status")
|
|
|
public Integer getPayStatus() {
|
|
@ -587,4 +466,13 @@ public class WlyyPrescriptionDO extends UuidIdentityEntity {
|
|
|
public void setPayStatus(Integer payStatus) {
|
|
|
this.payStatus = payStatus;
|
|
|
}
|
|
|
|
|
|
@Column(name = "disease_img")
|
|
|
public String getDiseaseImg() {
|
|
|
return diseaseImg;
|
|
|
}
|
|
|
|
|
|
public void setDiseaseImg(String diseaseImg) {
|
|
|
this.diseaseImg = diseaseImg;
|
|
|
}
|
|
|
}
|