package com.gkhy.exam.system.domain.DTO; import com.alibaba.excel.annotation.ExcelProperty; import lombok.Data; @Data public class StandingBookImportDTO { @ExcelProperty("部门") private String deptName; @ExcelProperty("名称") private String name; @ExcelProperty("型号") private String model; @ExcelProperty("责任人/使用人") private String personResponsible; @ExcelProperty("设备类型") //1计算机设备2办公自动化设备3外部设备4其他 private String deviceType; @ExcelProperty("编号") private String number; @ExcelProperty("品牌") private String brand; @ExcelProperty("密级/类型") private String confidentiality; @ExcelProperty("状态") //1.完好2需整改3损坏 private String status; @ExcelProperty("用途") private String purpose; @ExcelProperty("使用地点") private String location; @ExcelProperty("使用情况") private String used; @ExcelProperty("备注") private String remark; }