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
package cn.iocoder.yudao.module.mes.controller.admin.wm.productissue.vo.line;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Schema(description = "管理后台 - MES 领料出库单行 BOM 物料选择 Response VO")
@Data
public class MesWmProductIssueBomItemRespVO {
 
    @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 = "工单 BOM 需求量(同物料跨工序用量汇总)", example = "1000.00")
    private BigDecimal requiredQuantity;
 
}