117 lines
1.5 KiB
Plaintext
117 lines
1.5 KiB
Plaintext
package com.nationalelectric.greenH5.po;
|
|
|
|
|
|
/**
|
|
* GreenTotalTest
|
|
* @author Administrator
|
|
*/
|
|
public class GreenTotalTest implements java.io.Serializable {
|
|
|
|
/**
|
|
* 序列化
|
|
*/
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/**
|
|
*总检id
|
|
*/
|
|
|
|
private Long id;
|
|
|
|
/**
|
|
*用户id
|
|
*/
|
|
|
|
private String userId;
|
|
|
|
/**
|
|
*体检编号
|
|
*/
|
|
|
|
private String tjId;
|
|
|
|
/**
|
|
*单位id
|
|
*/
|
|
|
|
private String companyId;
|
|
|
|
/**
|
|
*总检结论
|
|
*/
|
|
|
|
private String endConclusion;
|
|
|
|
/**
|
|
*总检日期
|
|
*/
|
|
|
|
private String theDate;
|
|
|
|
/**
|
|
*总检医生
|
|
*/
|
|
|
|
private String inspectionDoctor;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(String userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public String getTjId() {
|
|
return tjId;
|
|
}
|
|
|
|
public void setTjId(String tjId) {
|
|
this.tjId = tjId;
|
|
}
|
|
|
|
public String getCompanyId() {
|
|
return companyId;
|
|
}
|
|
|
|
public void setCompanyId(String companyId) {
|
|
this.companyId = companyId;
|
|
}
|
|
|
|
public String getEndConclusion() {
|
|
return endConclusion;
|
|
}
|
|
|
|
public void setEndConclusion(String endConclusion) {
|
|
this.endConclusion = endConclusion;
|
|
}
|
|
|
|
public String getTheDate() {
|
|
return theDate;
|
|
}
|
|
|
|
public void setTheDate(String theDate) {
|
|
this.theDate = theDate;
|
|
}
|
|
|
|
public String getInspectionDoctor() {
|
|
return inspectionDoctor;
|
|
}
|
|
|
|
public void setInspectionDoctor(String inspectionDoctor) {
|
|
this.inspectionDoctor = inspectionDoctor;
|
|
}
|
|
|
|
|
|
}
|