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
package cn.iocoder.yudao.module.mes.controller.admin.md.item.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Schema(description = "管理后台 - MES 物料产品新增/修改 Request VO")
@Data
public class MesMdItemSaveReqVO {
 
    @Schema(description = "物料编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "物料编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "ITEM001")
    @NotEmpty(message = "物料编码不能为空")
    private String code;
 
    @Schema(description = "物料名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "螺丝")
    @NotEmpty(message = "物料名称不能为空")
    private String name;
 
    @Schema(description = "规格型号", example = "M6*20")
    private String specification;
 
    @Schema(description = "计量单位编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "202")
    @NotNull(message = "计量单位不能为空")
    private Long unitMeasureId;
 
    @Schema(description = "物料分类编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    @NotNull(message = "物料分类编号不能为空")
    private Long itemTypeId;
 
    @Schema(description = "是否启用安全库存", example = "false")
    private Boolean safeStockFlag;
 
    @Schema(description = "最低库存量", example = "100.0000")
    private BigDecimal minStock;
 
    @Schema(description = "最高库存量", example = "10000.0000")
    private BigDecimal maxStock;
 
    @Schema(description = "是否高值物料", example = "false")
    private Boolean highValue;
 
    @Schema(description = "是否启用批次管理", example = "true")
    private Boolean batchFlag;
 
    @Schema(description = "备注", example = "备注")
    private String remark;
 
    @Schema(description = "是否同步到 MDM", example = "true")
    private Boolean syncMdm;
 
}