package com.ltkj.hosp.domain;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import com.ltkj.common.annotation.Excel;
|
import com.ltkj.common.core.domain.BaseEntity;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.util.List;
|
|
/**
|
* 结果结论数据记录对象 tj_order_detail_rules
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-08-30
|
*/
|
@Data
|
public class TjOrderDetailRules extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId
|
@ApiModelProperty("主键id")
|
@JsonSerialize(using = ToStringSerializer.class)
|
private String id;
|
|
/**
|
* 体检号
|
*/
|
@Excel(name = "体检号")
|
private String tjNumber;
|
|
/**
|
* 客户号
|
*/
|
@Excel(name = "客户号")
|
private String cusId;
|
|
/**
|
* 客户名
|
*/
|
@Excel(name = "客户名")
|
private String cusName;
|
|
/**
|
* 性别
|
*/
|
@Excel(name = "性别")
|
private String cusSex;
|
|
/**
|
* 年龄
|
*/
|
@Excel(name = "年龄")
|
private String cusAge;
|
|
/**
|
* 项目id
|
*/
|
@Excel(name = "项目id")
|
private String proId;
|
|
/**
|
* 项目名
|
*/
|
@Excel(name = "项目名")
|
private String proName;
|
|
/**
|
* 病种id
|
*/
|
@Excel(name = "病种id")
|
private String aid;
|
|
/**
|
* 病种名
|
*/
|
@Excel(name = "病种名")
|
private String bingzhong;
|
|
/**
|
* 医生id
|
*/
|
@Excel(name = "医生id")
|
private String doctorId;
|
|
/**
|
* 诊断医生
|
*/
|
@Excel(name = "诊断医生")
|
private String doctorName;
|
|
|
@TableField(exist = false)
|
private String dwName;
|
|
@TableField(exist = false)
|
private String dwDeptName;
|
|
@TableField(exist = false)
|
private String groupName;
|
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("tjNumber", getTjNumber())
|
.append("cusId", getCusId())
|
.append("cusName", getCusName())
|
.append("cusSex", getCusSex())
|
.append("cusAge", getCusAge())
|
.append("proId", getProId())
|
.append("proName", getProName())
|
.append("aid", getAid())
|
.append("bingzhong", getBingzhong())
|
.append("doctorId", getDoctorId())
|
.append("doctorName", getDoctorName())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("deleted", getDeleted())
|
.append("createId", getCreateId())
|
.append("updateId", getUpdateId())
|
.toString();
|
}
|
}
|