feat: 导出辅助接口
parent
3065494e1d
commit
80ad2fd563
@ -0,0 +1,41 @@
|
||||
package com.docus.demo.dto;
|
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore;
|
||||
import com.alibaba.excel.annotation.ExcelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author YongBin Wen
|
||||
* @date 2025/12/10 星期三 14:30
|
||||
*/
|
||||
@Data
|
||||
public class ExportDto {
|
||||
|
||||
@ExcelIgnore
|
||||
private String patientId;
|
||||
@ExcelProperty(value = "姓名", index = 0)
|
||||
private String name;
|
||||
@ExcelProperty(value = "住院号", index = 1)
|
||||
private String inpatientNo;
|
||||
@ExcelProperty(value = "住院次数", index = 2)
|
||||
private String admissTimes;
|
||||
@ExcelProperty(value = "性别", index = 3)
|
||||
private String sex;
|
||||
@ExcelProperty(value = "箱号", index = 4)
|
||||
private String ph;
|
||||
@ExcelProperty(value = "入院时间", index = 5)
|
||||
private String admissDate;
|
||||
@ExcelProperty(value = "入院科室", index = 6)
|
||||
private String admissDeptName;
|
||||
@ExcelProperty(value = "出院时间", index = 7)
|
||||
private String disDate;
|
||||
@ExcelProperty(value = "出院科室", index = 8)
|
||||
private String disDeptName;
|
||||
@ExcelProperty(value = "数据来源", index = 9)
|
||||
private String fileSource;
|
||||
@ExcelProperty(value = "是否打印", index = 10)
|
||||
private String isPrint;
|
||||
@ExcelProperty(value = "是否扫描", index = 11)
|
||||
private String scanSource;
|
||||
}
|
||||
Loading…
Reference in New Issue