You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
1.9 KiB
Java
106 lines
1.9 KiB
Java
11 months ago
|
package com.supervision.model;
|
||
|
|
||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||
|
import com.baomidou.mybatisplus.annotation.TableField;
|
||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
import java.io.Serializable;
|
||
|
import java.util.Date;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 病历辅助检查
|
||
|
* @TableName vp_medical_rec_ancillary
|
||
|
*/
|
||
|
@TableName(value ="vp_medical_rec_ancillary")
|
||
|
@Data
|
||
|
public class MedicalRecAncillary implements Serializable {
|
||
|
/**
|
||
|
* 主键
|
||
|
*/
|
||
|
@TableId
|
||
|
private String id;
|
||
|
|
||
|
/**
|
||
|
* 病历id
|
||
|
*/
|
||
|
private String medicalRecId;
|
||
|
|
||
|
/**
|
||
|
* 工具ID
|
||
|
*/
|
||
|
private String itemId;
|
||
|
|
||
|
/**
|
||
|
* 结果
|
||
|
*/
|
||
|
private String result;
|
||
|
|
||
|
/**
|
||
|
* 正常结果
|
||
|
*/
|
||
|
private String normalResult;
|
||
|
|
||
|
/**
|
||
|
* 说明
|
||
|
*/
|
||
|
private String description;
|
||
|
|
||
|
/**
|
||
|
* 是否是初步检查(0否1是)
|
||
|
*/
|
||
|
private Integer primarilyDiagnosisCriteriaFlag;
|
||
|
|
||
|
/**
|
||
|
* 是否是证实诊断依据(0否1是)
|
||
|
*/
|
||
|
private Integer basisConfirmFlag;
|
||
|
|
||
|
/**
|
||
|
* 是否是鉴别依据(0否1是)
|
||
|
*/
|
||
|
private Integer basisIdentificationFlag;
|
||
|
|
||
|
/**
|
||
|
* 是否全面检查(0否1是)
|
||
|
*/
|
||
|
private Integer fullCheckFlag;
|
||
|
|
||
|
/**
|
||
|
* 是否诊断判读 0不需要 1需要
|
||
|
*/
|
||
|
private Integer diagnosisAssessmentFlag;
|
||
|
|
||
|
/**
|
||
|
* 预期诊断结果 0正常 1 不正常
|
||
|
*/
|
||
|
private Integer expectedDiagnosisResult;
|
||
|
|
||
|
/**
|
||
|
* 是否必查-初步诊断依据 0否1是
|
||
|
*/
|
||
|
private Integer requireCheckFlag;
|
||
|
|
||
|
/**
|
||
|
* 创建人ID
|
||
|
*/
|
||
|
private String createUserId;
|
||
|
|
||
|
/**
|
||
|
* 创建时间
|
||
|
*/
|
||
|
private Date createTime;
|
||
|
|
||
|
/**
|
||
|
* 更新人
|
||
|
*/
|
||
|
private String updateUserId;
|
||
|
|
||
|
/**
|
||
|
* 更新时间
|
||
|
*/
|
||
|
private Date updateTime;
|
||
|
|
||
|
@TableField(exist = false)
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
}
|