6 天以前 1e123568c2f561013f5636e45dc0db30b17a3517
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
package com.ruoyi.quality.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@Schema(name = "QualityTraceInputVo", description = "追溯-报工投入物料")
public class QualityTraceInputVo {
 
    @Schema(description = "所属报工单id")
    private Long productMainId;
 
    @Schema(description = "物料规格id")
    private Long productModelId;
 
    @Schema(description = "物料名称")
    private String materialName;
 
    @Schema(description = "物料规格")
    private String materialModel;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "投入数量")
    private BigDecimal inputQty;
 
    @Schema(description = "工单号")
    private String workOrderNo;
 
    @Schema(description = "工序名称")
    private String operationName;
}