5 天以前 5140e16bd1cb2bdf974d47a4342f9e27ef804655
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
package cn.iocoder.yudao.module.mes.controller.admin.dv.checkplan.vo.machinery;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MES 点检保养方案设备 Response VO")
@Data
public class MesDvCheckPlanMachineryRespVO {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "方案编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long planId;
 
    @Schema(description = "设备编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long machineryId;
 
    @Schema(description = "设备编码", example = "EQ001")
    private String machineryCode;
 
    @Schema(description = "设备名称", example = "注塑机A")
    private String machineryName;
 
    @Schema(description = "品牌", example = "海天")
    private String machineryBrand;
 
    @Schema(description = "规格型号", example = "HTF120")
    private String machinerySpecification;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}