|
@ -14,7 +14,7 @@ import java.util.Date;
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_prescription")
|
|
|
public class Prescription extends IdEntity{
|
|
|
public class Prescription extends IdEntity {
|
|
|
|
|
|
private String code; //业务主键
|
|
|
private String parentCode; //如果是续方 那就是处方的code
|
|
@ -45,8 +45,11 @@ public class Prescription extends IdEntity{
|
|
|
private String expressNum; //快递单号
|
|
|
private String expressCompanyName; //快递公司名称
|
|
|
private String caMessage; //ca指纹信息
|
|
|
private String jwCode; //基卫的处方code
|
|
|
private String reason; //续方原因
|
|
|
private String caCertData;//ca加密信息
|
|
|
|
|
|
@Column(name = "code", unique = true , nullable=false)
|
|
|
@Column(name = "code", unique = true, nullable = false)
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
@ -312,4 +315,28 @@ public class Prescription extends IdEntity{
|
|
|
public void setCaMessage(String caMessage) {
|
|
|
this.caMessage = caMessage;
|
|
|
}
|
|
|
|
|
|
public String getJwCode() {
|
|
|
return jwCode;
|
|
|
}
|
|
|
|
|
|
public void setJwCode(String jwCode) {
|
|
|
this.jwCode = jwCode;
|
|
|
}
|
|
|
|
|
|
public String getReason() {
|
|
|
return reason;
|
|
|
}
|
|
|
|
|
|
public void setReason(String reason) {
|
|
|
this.reason = reason;
|
|
|
}
|
|
|
|
|
|
public String getCaCertData() {
|
|
|
return caCertData;
|
|
|
}
|
|
|
|
|
|
public void setCaCertData(String caCertData) {
|
|
|
this.caCertData = caCertData;
|
|
|
}
|
|
|
}
|