You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.3 KiB
77 lines
1.3 KiB
package com.ynxbd.common.bean.pacs;
|
|
|
|
import lombok.*;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @author 李进才
|
|
* @ClassName RISPacsReportInfo
|
|
* @Description description 上海岱嘉 视图实体类
|
|
*
|
|
* @date 2023/3/21 14:45
|
|
*/
|
|
@Setter
|
|
@Getter
|
|
@ToString
|
|
@NoArgsConstructor
|
|
public class RISPacsReportInfo implements Serializable {
|
|
/**
|
|
报告单号
|
|
*/
|
|
private String reportId;
|
|
/**
|
|
门诊号
|
|
*/
|
|
private String outPatientNum;
|
|
/**
|
|
* 住院号
|
|
*/
|
|
private String inPatientNum;
|
|
/**
|
|
* 患者姓名
|
|
*/
|
|
private String patientName;
|
|
/**
|
|
* 检查类型
|
|
*/
|
|
private String reportType;
|
|
/**
|
|
* 检查部位
|
|
*/
|
|
private String bodyPart;
|
|
/**
|
|
* 申请科室
|
|
*/
|
|
private String departmentName;
|
|
/**
|
|
* 申请医师
|
|
*/
|
|
private String applyDoctor;
|
|
/**
|
|
* 报告完成时间
|
|
*/
|
|
private Date reportDate;
|
|
/**
|
|
* 报告医师
|
|
*/
|
|
private String reportDoctor;
|
|
/**
|
|
* 影像描述(征象)
|
|
*/
|
|
private String reportText1;
|
|
/**
|
|
* 诊断意见
|
|
*/
|
|
private String reportText2;
|
|
/**
|
|
* 报告原始文件
|
|
*/
|
|
private String reportFile;
|
|
/**
|
|
*报告文件类型
|
|
*/
|
|
private int reportFileType;
|
|
|
|
}
|
|
|