|
@ -0,0 +1,75 @@
|
|
|
package com.yihu.wlyy.entity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.util.Date;
|
|
|
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_sign_patient_label_info")
|
|
|
public class SignPatientLabelInfo extends IdEntity {
|
|
|
// 患者code
|
|
|
private String patient;
|
|
|
// 患者姓名
|
|
|
private String pname;
|
|
|
// 标签code
|
|
|
private String label;
|
|
|
// 标签名称
|
|
|
private String labelName;
|
|
|
// 标签类型
|
|
|
private String labelType;
|
|
|
// 状态 0:无效 1:有效
|
|
|
private Integer status;
|
|
|
// 操作日期
|
|
|
private Date czrq;
|
|
|
|
|
|
|
|
|
public String getPatient() {
|
|
|
return patient;
|
|
|
}
|
|
|
public void setPatient(String patient) {
|
|
|
this.patient = patient;
|
|
|
}
|
|
|
|
|
|
public String getPname() {
|
|
|
return pname;
|
|
|
}
|
|
|
public void setPname(String pname) {
|
|
|
this.pname = pname;
|
|
|
}
|
|
|
|
|
|
public String getLabel() {
|
|
|
return label;
|
|
|
}
|
|
|
public void setLabel(String label) {
|
|
|
this.label = label;
|
|
|
}
|
|
|
|
|
|
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 getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
public Date getCzrq() {
|
|
|
return czrq;
|
|
|
}
|
|
|
public void setCzrq(Date czrq) {
|
|
|
this.czrq = czrq;
|
|
|
}
|
|
|
}
|
|
|
|