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
| package org.springblade.mdm.basesetting.producedivision.vo;
|
| import com.alibaba.excel.annotation.ExcelProperty;
| import com.alibaba.excel.annotation.write.style.ColumnWidth;
| import lombok.Data;
|
| /**
| * 勤哲分工表excel格式
| */
| @Data
| public class QinzheFgbExcel {
| @ColumnWidth(20)
| @ExcelProperty("产品号")
| private String cph;
|
| @ColumnWidth(15)
| @ExcelProperty("主管工艺")
| private String zggy;
|
|
| @ColumnWidth(10)
| @ExcelProperty("零组件号")
| private String ljh;
|
| }
|
|