1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.chinaztt.mes.equipment.excel;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import lombok.Data;
|
| /**
| * @author ZTT
| */
| @Data
| public class EquipmentData {
|
| @ExcelProperty(value = "编号")
| private String number;
|
| @ExcelProperty(value = "名称")
| private String name;
|
| @ExcelProperty("工厂名称")
| private String factoryName;
|
| @ExcelProperty("工厂id")
| private Long factoryId;
|
| }
|
|