yangys
2025-06-13 4308b53ee6f9028905a333d86861ab2735ad2166
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
51
52
package org.springblade.mdm.basesetting.machine.vo;
 
import lombok.Data;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
@Data
@ColumnWidth(25)
@HeadRowHeight(20)
@ContentRowHeight(18)
public class MachineExcelVO {
 
    @ColumnWidth(20)
    @ExcelProperty("机床编号")
    private String code;
 
    @ExcelProperty("机床型号")
    private String name;
 
    @ExcelProperty("机床组编号")
    private String machineGroupCode;
    /**
     * 机器规格:01车床/02铣床,在业务字典配置(key=machine_spec)
     */
    @ExcelProperty("机床规格")
    private String machineSpec;
 
    @ExcelProperty("操作员")
    private String operator;
 
    @ExcelProperty("所属单位ID")
    private Long ownerDept;
 
    @ExcelProperty("生产商")
    private String manufacturer;
 
    @ExcelProperty("轮询时间")
    private Integer pollingHours;
 
    @ExcelProperty("控制系统")
    private String controlSystem;
 
    @ExcelProperty("程序下发目录")
    private String progSendDir;
 
    @ExcelProperty("程序回传目录")
    private String progReceiveDir;
 
    @ExcelProperty("备注")
    private String remark;
}