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.
53 lines
1.8 KiB
53 lines
1.8 KiB
2 years ago
|
/*
|
||
|
* *
|
||
|
* * @Project 微官网
|
||
|
* * @Author 张剑峰
|
||
|
* * @Date 2020/10/21 下午4:43
|
||
|
* * @Description
|
||
|
* * @Version v1.0.0
|
||
|
* * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
package com.ynxbd.common.bean.lis;
|
||
|
|
||
|
import com.ynxbd.common.bean.report.InspectionItem;
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.util.List;
|
||
|
|
||
|
@Setter
|
||
|
@Getter
|
||
|
@ToString
|
||
|
@NoArgsConstructor
|
||
|
public class XBDLisReport implements Serializable {
|
||
|
private String id; // id
|
||
|
private String reportName; // 报告单名称
|
||
|
private String reportType; // 报告单类型
|
||
|
private String reqDeptName; // 申请科室
|
||
|
private String reqDoctName; // 申请医生
|
||
|
private String reqItemName; // 申请项目(eg:肝功、肾功、血常规)
|
||
|
private String reqDate; // 申请时间
|
||
|
private String reporter; // 报告人
|
||
|
private String reportDate; // 报告日期
|
||
|
private String testDate; // 检验日期
|
||
|
private String sampleCode; // 样本号
|
||
|
private String specimenName;// 标本类型
|
||
|
private String patientName; // 患者姓名
|
||
|
private String sex; // 性别
|
||
|
private String age; // 年龄
|
||
|
private String patientType; // 患者类别(eg:住院、门诊、急诊、体检、刑拘等)
|
||
|
private String treatId; // 就诊号(门诊号、住院号)
|
||
|
private String bedNo; // 床号(住院患者才有)
|
||
|
private String rm_cipherText; // 瑞美报告头部加密参数
|
||
|
|
||
|
private String enReportId; // 加密的报告id
|
||
|
private String enSampleCode; // 加密的报告id
|
||
|
|
||
|
private List<InspectionItem> item;
|
||
|
}
|