xiaoyi
5 天以前 c9d4ba37c1f681b12e24014013fa9a28734bad42
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
53
54
55
56
57
58
59
60
package cn.iocoder.yudao.module.mes.controller.admin.pro.alternativeplan.vo;
 
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
import cn.idev.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MES 作业替代方案 Response VO")
@Data
@ExcelIgnoreUnannotated
public class MesProAlternativePlanRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    @ExcelProperty("编号")
    private Long id;
 
    @Schema(description = "方案编码", example = "TD20260820001")
    @ExcelProperty("方案编码")
    private String code;
 
    @Schema(description = "方案名称", example = "线路巡检替代方案")
    @ExcelProperty("方案名称")
    private String name;
 
    @Schema(description = "主工序编号", example = "100")
    private Long mainProcessId;
 
    @Schema(description = "主工序名称", example = "线路巡检")
    @ExcelProperty("主工序")
    private String mainProcessName;
 
    @Schema(description = "替代工序编号", example = "101")
    private Long altProcessId;
 
    @Schema(description = "替代工序名称", example = "无人机巡检")
    @ExcelProperty("替代工序")
    private String altProcessName;
 
    @Schema(description = "替代条件", example = "设备故障/负荷受限/人员不足")
    @ExcelProperty("替代条件")
    private String altCondition;
 
    @Schema(description = "适用范围", example = "110kV 线路")
    @ExcelProperty("适用范围")
    private String scope;
 
    @Schema(description = "状态(0=草稿,10=已发布)", example = "0")
    private Integer status;
 
    @Schema(description = "备注", example = "备注")
    @ExcelProperty("备注")
    private String remark;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    @ExcelProperty("创建时间")
    private LocalDateTime createTime;
 
}