package com.ltkj.hosp.domain;
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ltkj.common.annotation.Excel;
|
import com.ltkj.common.core.domain.BaseEntity;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 弃检对象 tj_discard_inspection
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-03-24
|
*/
|
@Data
|
public class TjDiscardInspection extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
private Long id;
|
|
|
/**
|
* 体检号
|
*/
|
@Excel(name = "体检号")
|
private String tjNum;
|
|
/**
|
* 客户id
|
*/
|
private String cusId;
|
|
/**
|
* 客户姓名
|
*/
|
@Excel(name = "客户姓名")
|
private String cusName;
|
|
/**
|
* 登记时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "登记时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
private Date registrationTime;
|
|
/**
|
* 弃检项目(子项)
|
*/
|
@Excel(name = "弃检项目")
|
private String proId;
|
|
/**
|
* 项目名
|
*/
|
@Excel(name = "项目名")
|
private String proName;
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
|
|
public void setTjNum(String tjNum) {
|
this.tjNum = tjNum;
|
}
|
|
public String getTjNum() {
|
return tjNum;
|
}
|
|
public void setCusId(String cusId) {
|
this.cusId = cusId;
|
}
|
|
public String getCusId() {
|
return cusId;
|
}
|
|
public void setCusName(String cusName) {
|
this.cusName = cusName;
|
}
|
|
public String getCusName() {
|
return cusName;
|
}
|
|
public void setRegistrationTime(Date registrationTime) {
|
this.registrationTime = registrationTime;
|
}
|
|
public Date getRegistrationTime() {
|
return registrationTime;
|
}
|
|
public void setProId(String proId) {
|
this.proId = proId;
|
}
|
|
public String getProId() {
|
return proId;
|
}
|
|
public void setProName(String proName) {
|
this.proName = proName;
|
}
|
|
public String getProName() {
|
return proName;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("deleted", getDeleted())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("tjNum", getTjNum())
|
.append("cusId", getCusId())
|
.append("cusName", getCusName())
|
.append("registrationTime", getRegistrationTime())
|
.append("proId", getProId())
|
.append("proName", getProName())
|
.toString();
|
}
|
}
|