|
|
|
@ -16,28 +16,50 @@ import lombok.EqualsAndHashCode;
|
|
|
|
|
@EqualsAndHashCode
|
|
|
|
|
public class MedicalInfoExcelModel extends BaseRowModel {
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "住院号", index = 0)
|
|
|
|
|
// @ExcelProperty(value = "住院号", index = 0)
|
|
|
|
|
// private String admissId;
|
|
|
|
|
//
|
|
|
|
|
// @ExcelProperty(value = "住院次数", index = 1)
|
|
|
|
|
// private Integer admissTimes;
|
|
|
|
|
//
|
|
|
|
|
// @ExcelProperty(value = "流水号", index = 2)
|
|
|
|
|
// private String serialNumber;
|
|
|
|
|
//
|
|
|
|
|
// @ExcelProperty(value = "患者姓名", index = 3)
|
|
|
|
|
// private String name;
|
|
|
|
|
//
|
|
|
|
|
// @ExcelProperty(value = "住院医师", index = 4)
|
|
|
|
|
// private String attendingName;
|
|
|
|
|
//
|
|
|
|
|
// @ExcelProperty(value = "出院日期", index = 5)
|
|
|
|
|
// private String disDate;
|
|
|
|
|
//
|
|
|
|
|
// @ExcelProperty(value = "出院科室编码", index = 6)
|
|
|
|
|
// private String disDept;
|
|
|
|
|
//
|
|
|
|
|
// @ExcelProperty(value = "出院科室名称", index = 7)
|
|
|
|
|
// private String disDeptName;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "住院号", index = 1)
|
|
|
|
|
private String admissId;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "住院次数", index = 1)
|
|
|
|
|
@ExcelProperty(value = "住院次数", index = 6)
|
|
|
|
|
private Integer admissTimes;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "流水号", index = 2)
|
|
|
|
|
@ExcelProperty(value = "流水号", index = 0)
|
|
|
|
|
private String serialNumber;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "患者姓名", index = 3)
|
|
|
|
|
@ExcelProperty(value = "患者姓名", index = 2)
|
|
|
|
|
private String name;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "住院医师", index = 4)
|
|
|
|
|
@ExcelProperty(value = "住院医师", index = 25)
|
|
|
|
|
private String attendingName;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "出院日期", index = 5)
|
|
|
|
|
@ExcelProperty(value = "出院日期", index = 14)
|
|
|
|
|
private String disDate;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "出院科室编码", index = 6)
|
|
|
|
|
private String disDept;
|
|
|
|
|
|
|
|
|
|
@ExcelProperty(value = "出院科室名称", index = 7)
|
|
|
|
|
@ExcelProperty(value = "出院科室名称", index = 11)
|
|
|
|
|
private String disDeptName;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|