liyong
4 天以前 0f792c9b3b88dc4b1b7b306f89e257d931d2d0bd
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
package cn.iocoder.yudao.module.mes.controller.admin.pro.workorder.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Schema(description = "管理后台 - MES 工单物料需求 Response VO")
@Data
public class MesProWorkOrderItemRespVO {
 
    @Schema(description = "物料编号", example = "100")
    private Long itemId;
 
    @Schema(description = "物料编码", example = "M-001")
    private String itemCode;
 
    @Schema(description = "物料名称", example = "电阻 10K")
    private String itemName;
 
    @Schema(description = "规格型号", example = "0603")
    private String itemSpecification;
 
    @Schema(description = "单位名称", example = "个")
    private String unitMeasureName;
 
    @Schema(description = "需求数量", example = "1000.00")
    private BigDecimal quantity;
 
    @Schema(description = "物料/产品标识", example = "ITEM")
    private String itemOrProduct;
 
}