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_xd_picture
|
*
|
* @author ltkj_赵佳豪&李格
|
* @date 2023-04-11
|
*/
|
@Data
|
@ApiModel(value = "心电图")
|
public class TjXdPicture 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 xdt;
|
|
/**
|
* 项目id
|
*/
|
@Excel(name = "项目id")
|
@ApiModelProperty(value = "项目id")
|
private String proId;
|
|
/**
|
* 项目名
|
*/
|
@Excel(name = "项目名")
|
@ApiModelProperty(value = "项目名")
|
private String proName;
|
|
/**
|
* 项目结果
|
*/
|
@Excel(name = "项目结果")
|
@ApiModelProperty(value = "项目结果")
|
private String proResult;
|
|
/**
|
* 结论
|
*/
|
@Excel(name = "结论")
|
@ApiModelProperty(value = "结论")
|
private String conclusion;
|
|
@TableField(exist = false)
|
private String picturePath;
|
}
|