|
@ -0,0 +1,78 @@
|
|
|
|
package com.yihu.wlyy.entity.patient.prescription;
|
|
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
import javax.persistence.Table;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by Trick on 2017/8/26.
|
|
|
|
*/
|
|
|
|
@Entity
|
|
|
|
@Table(name = "wlyy_prescription_reviewed_reason")
|
|
|
|
public class PrescriptionReviewedReason extends IdEntity {
|
|
|
|
private String code;//业务CODE
|
|
|
|
private String prescriptionCode;//续方code
|
|
|
|
private String reviewedCode;//调整code
|
|
|
|
private String reasonCode;//审核原因code
|
|
|
|
private String reasonValue;//审核原因值
|
|
|
|
private Date createTime;//创建时间
|
|
|
|
private Date updateTime;//更新时间
|
|
|
|
|
|
|
|
public String getCode() {
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
|
this.code = code;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPrescriptionCode() {
|
|
|
|
return prescriptionCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPrescriptionCode(String prescriptionCode) {
|
|
|
|
this.prescriptionCode = prescriptionCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getReviewedCode() {
|
|
|
|
return reviewedCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setReviewedCode(String reviewedCode) {
|
|
|
|
this.reviewedCode = reviewedCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getReasonCode() {
|
|
|
|
return reasonCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setReasonCode(String reasonCode) {
|
|
|
|
this.reasonCode = reasonCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getReasonValue() {
|
|
|
|
return reasonValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setReasonValue(String reasonValue) {
|
|
|
|
this.reasonValue = reasonValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getCreateTime() {
|
|
|
|
return createTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
|
this.createTime = createTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getUpdateTime() {
|
|
|
|
return updateTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
|
|
this.updateTime = updateTime;
|
|
|
|
}
|
|
|
|
}
|