新火炬后端单体项目初始化代码
zhangherong
2025-06-30 804901bfc31353a5d398a68dd8ef1635b76629fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.eam.dto;
 
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.io.Serializable;
 
@Data
public class WeekMaintenanceStandardImport implements Serializable {
 
    @Excel(name = "序号", width = 15)
    private Integer itemCode;
    @Excel(name = "保养大项目", width = 15)
    private String itemName;
    @Excel(name = "子项目", width = 15)
    private String subItemName;
    @Excel(name = "部位/类型", width = 15)
    private String itemPart;
    @Excel(name = "保养要求", width = 15)
    private String itemDemand;
}