|
@ -0,0 +1,66 @@
|
|
|
|
package com.yihu.wlyy.entity.patient.prescription;
|
|
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by Trick on 2017/8/26.
|
|
|
|
*/
|
|
|
|
public class PrescriptionReasonDict extends IdEntity {
|
|
|
|
|
|
|
|
private String code;//编码code
|
|
|
|
private String value;//原因内容
|
|
|
|
private String type;//类型:0 审核原因标签;1 调整原因标签
|
|
|
|
private String sort;//排序号
|
|
|
|
private Date createTime;//创建时间
|
|
|
|
private Date updateTime;//修改时间
|
|
|
|
|
|
|
|
public String getCode() {
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
|
this.code = code;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getValue() {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setValue(String value) {
|
|
|
|
this.value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getType() {
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setType(String type) {
|
|
|
|
this.type = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSort() {
|
|
|
|
return sort;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSort(String sort) {
|
|
|
|
this.sort = sort;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|