9 天以前 67c5d3ea86cfaad45c0150b96949dbcb6729b4d0
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
package cn.iocoder.yudao.module.mes.controller.admin.md.item.vo.sip;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MES 产品SIP Response VO")
@Data
public class MesMdProductSipRespVO {
 
    @Schema(description = "SIP编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "物料产品ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "69")
    private Long itemId;
 
    @Schema(description = "排列顺序", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer sort;
 
    @Schema(description = "工序ID", example = "100")
    private Long processId;
 
    @Schema(description = "标题", requiredMode = Schema.RequiredMode.REQUIRED, example = "步骤一")
    private String title;
 
    @Schema(description = "详细描述", example = "操作说明")
    private String description;
 
    @Schema(description = "图片地址", example = "https://www.example.com/sip.png")
    private String url;
 
    @Schema(description = "备注", example = "备注信息")
    private String remark;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
    @Schema(description = "工序编号", example = "PROC001")
    private String processCode;
 
    @Schema(description = "工序名称", example = "焊接工序")
    private String processName;
 
}