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.
LianzhongCollect/src/main/java/com/jiashi/service/LianZhongUploadInfo.java

110 lines
2.1 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.jiashi.service;
import lombok.Data;
import java.util.List;
/**
* 联众上传信息
*/
@Data
public class LianZhongUploadInfo {
/**
*
* 联众上传患者信息
*/
@Data
public static class PatientInfo {
/**
* 病案号
*/
private String inpatientNo;
/**
* 住院次数
*/
private Integer admissTimes;
/**
* 姓名
*/
private String name;
/**
* 性别 男1女2
*/
private String sex;
/**
* 性别,男女
*/
private String sexName;
/**
* 年龄-岁
*/
private Integer age;
/**
* 入院日期 yyyy-MM-dd HH:mm:ss
*/
private String admissDate;
/**
* 出院日期 yyyy-MM-dd HH:mm:ss
*/
private String disDate;
/**
* 入院科室编码
*/
private String admissDeptName;
/**
* 出院科室名称
*/
private String disDeptName;
/**
* 身份证号
*/
private String idCard;
/**
* 主要诊断编码
*/
private String mainDiagCode;
/**
* 主要诊断名称
*/
private String mainDiagName;
/**
* 主要手术编码
*/
private String mainOperateCode;
/**
* 主要手术名称
*/
private String mainOperateName;
}
/**
*
* 联众上传文件信息
*/
@Data
public static class FileInfo {
/**
* 文件分段id
*/
private String assortId;
/**
* 文件展示标题
*/
private String fileTitle;
/**
* 上传的本地文件名
*/
private String uploadFileName;
/**
* 文件排序
*/
private int sort;
}
private PatientInfo patientInfo;
private List<FileInfo> fileInfos;
private int delAllFile;
}