9 天以前 8c14b50773a1e582b652c03f5a63bb2233d069b8
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 cn.iocoder.yudao.module.mes.controller.admin.wm.sn.vo;
 
import cn.idev.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MES SN 码分组 Response VO")
@Data
@Accessors(chain = true)
public class MesWmSnGroupRespVO {
 
    @Schema(description = "批次 UUID", example = "550e8400-e29b-41d4-a716-446655440000")
    private String uuid;
 
    @Schema(description = "SN 码数量", example = "100")
    @ExcelProperty("SN 码数量")
    private Integer count;
 
    @Schema(description = "物料编号", example = "1")
    private Long itemId;
 
    @Schema(description = "物料编码", example = "ITEM001")
    @ExcelProperty("物料编码")
    private String itemCode;
 
    @Schema(description = "物料名称", example = "物料A")
    @ExcelProperty("物料名称")
    private String itemName;
 
    @Schema(description = "规格型号", example = "100*200")
    @ExcelProperty("规格型号")
    private String specification;
 
    @Schema(description = "单位", example = "个")
    @ExcelProperty("单位")
    private String unitName;
 
    @Schema(description = "批次号", example = "BATCH001")
    @ExcelProperty("批次号")
    private String batchCode;
 
    @Schema(description = "生产工单编号", example = "1")
    private Long workOrderId;
 
    @Schema(description = "创建时间")
    @ExcelProperty("生成时间")
    private LocalDateTime createTime;
 
}