package com.ltkj.hosp.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.ltkj.common.annotation.Excel;
|
import com.ltkj.common.core.domain.BaseEntity;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 体检其他检测对象 tj_other_check
|
*
|
* @author ltkj
|
* @date 2023-04-14
|
*/
|
@Data
|
@ApiModel(value = "体检其他检测")
|
public class TjOtherCheck extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId(type = IdType.AUTO)
|
private String id;
|
|
/**
|
* 体检号
|
*/
|
@Excel(name = "体检号")
|
@ApiModelProperty(value = "体检号")
|
private String tjNum;
|
|
/**
|
* 客户id
|
*/
|
@ApiModelProperty(value = "客户id")
|
private String cusId;
|
|
/**
|
* 客户名
|
*/
|
@Excel(name = "客户名")
|
@ApiModelProperty(value = "客户名")
|
private String cusName;
|
|
/**
|
* 检测图
|
*/
|
@Excel(name = "检测图")
|
@ApiModelProperty(value = "检测图")
|
private String checkPicture;
|
|
/**
|
* 检测类型
|
*/
|
@Excel(name = "检测类型")
|
@ApiModelProperty(value = "检测类型")
|
private String checkType;
|
|
/**
|
* 项目id
|
*/
|
@ApiModelProperty(value = "项目id")
|
private String proId;
|
|
/**
|
* 项目名
|
*/
|
@Excel(name = "项目名")
|
@ApiModelProperty(value = "项目名")
|
private String proName;
|
|
/**
|
* 收费项目id
|
*/
|
@Excel(name = "收费项目id")
|
@ApiModelProperty(value = "收费项目id")
|
private String chargePro;
|
|
/**
|
* 测定值
|
*/
|
@Excel(name = "测定值")
|
@ApiModelProperty(value = "测定值")
|
private String measuredValue;
|
|
/**
|
* 修定值
|
*/
|
@Excel(name = "修定值")
|
@ApiModelProperty(value = "修定值")
|
private String fixedValue;
|
|
/**
|
* 评价内容
|
*/
|
@Excel(name = "评价内容")
|
@ApiModelProperty(value = "评价内容")
|
private String appraise;
|
|
@TableField(exist = false)
|
private String picturePath;
|
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String 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 setCheckPicture(String checkPicture) {
|
this.checkPicture = checkPicture;
|
}
|
|
public String getCheckPicture() {
|
return checkPicture;
|
}
|
|
public void setCheckType(String checkType) {
|
this.checkType = checkType;
|
}
|
|
public String getCheckType() {
|
return checkType;
|
}
|
|
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;
|
}
|
|
public void setChargePro(String chargePro) {
|
this.chargePro = chargePro;
|
}
|
|
public String getChargePro() {
|
return chargePro;
|
}
|
|
public void setMeasuredValue(String measuredValue) {
|
this.measuredValue = measuredValue;
|
}
|
|
public String getMeasuredValue() {
|
return measuredValue;
|
}
|
|
public void setFixedValue(String fixedValue) {
|
this.fixedValue = fixedValue;
|
}
|
|
public String getFixedValue() {
|
return fixedValue;
|
}
|
|
public void setAppraise(String appraise) {
|
this.appraise = appraise;
|
}
|
|
public String getAppraise() {
|
return appraise;
|
}
|
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("tjNum", getTjNum())
|
.append("cusId", getCusId())
|
.append("cusName", getCusName())
|
.append("checkPicture", getCheckPicture())
|
.append("checkType", getCheckType())
|
.append("proId", getProId())
|
.append("proName", getProName())
|
.append("chargePro", getChargePro())
|
.append("measuredValue", getMeasuredValue())
|
.append("fixedValue", getFixedValue())
|
.append("appraise", getAppraise())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("deleted", getDeleted())
|
.toString();
|
}
|
}
|