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
| package com.chinaztt.mes.basic.excel;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import lombok.Data;
|
| /**
| * @author ZTT
| */
| @Data
| public class DivisionData {
| /**
| * 部门编号
| */
| @ExcelProperty("部门编号")
| private String divisionNo;
| /**
| * 部门名称
| */
| @ExcelProperty( "部门名称")
| private String divisionName;
| /**
| * 公司名称
| */
| @ExcelProperty("公司名称")
| private String companyName;
|
| @ExcelProperty("工厂名称")
| private String factoryName;
|
| }
|
|