1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
| 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;
|
| }
|
|