|
@ -0,0 +1,78 @@
|
|
|
package com.yihu.jw.entity.base.label;
|
|
|
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2018/12/7.
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "base_patient_label")
|
|
|
public class PatientLabelDO extends UuidIdentityEntityWithOperator implements java.io.Serializable{
|
|
|
|
|
|
private String labelCode;//标签标识',
|
|
|
private String labelName;//标签名称',
|
|
|
private String labelType;//标签类型(1:卫计委三大分组 2:健康状况 3:疾病类型 4:自定义标签5.周月标签 6.老年人标识 7.专病类型,8.健康情况)',
|
|
|
private Integer isSystem;//是否系统标签(0:否 1是)',
|
|
|
private String teamCode;//团队code',
|
|
|
private Integer sort;//排序',
|
|
|
private Integer status;//状态(0:无效 1:有效)',
|
|
|
|
|
|
public String getLabelCode() {
|
|
|
return labelCode;
|
|
|
}
|
|
|
|
|
|
public void setLabelCode(String labelCode) {
|
|
|
this.labelCode = labelCode;
|
|
|
}
|
|
|
|
|
|
public String getLabelName() {
|
|
|
return labelName;
|
|
|
}
|
|
|
|
|
|
public void setLabelName(String labelName) {
|
|
|
this.labelName = labelName;
|
|
|
}
|
|
|
|
|
|
public String getLabelType() {
|
|
|
return labelType;
|
|
|
}
|
|
|
|
|
|
public void setLabelType(String labelType) {
|
|
|
this.labelType = labelType;
|
|
|
}
|
|
|
|
|
|
public Integer getIsSystem() {
|
|
|
return isSystem;
|
|
|
}
|
|
|
|
|
|
public void setIsSystem(Integer isSystem) {
|
|
|
this.isSystem = isSystem;
|
|
|
}
|
|
|
|
|
|
public String getTeamCode() {
|
|
|
return teamCode;
|
|
|
}
|
|
|
|
|
|
public void setTeamCode(String teamCode) {
|
|
|
this.teamCode = teamCode;
|
|
|
}
|
|
|
|
|
|
public Integer getSort() {
|
|
|
return sort;
|
|
|
}
|
|
|
|
|
|
public void setSort(Integer sort) {
|
|
|
this.sort = sort;
|
|
|
}
|
|
|
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
}
|