hsy
4 天以前 bb0b80bd7ca7c1f979ab0125ae01f3faa1d14f4b
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.batch.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MES 批次采购来源 Response VO")
@Data
public class MesWmBatchPurchaseSourceRespVO {
 
    @Schema(description = "采购入库单号", example = "IR20250731001")
    private String receiptCode;
 
    @Schema(description = "入库日期")
    private LocalDateTime receiptDate;
 
    @Schema(description = "采购订单编号", example = "PO20250731001")
    private String purchaseOrderCode;
 
    @Schema(description = "供应商 ID", example = "1")
    private Long vendorId;
 
    @Schema(description = "供应商编码", example = "V001")
    private String vendorCode;
 
    @Schema(description = "供应商名称", example = "供应商A")
    private String vendorName;
 
    @Schema(description = "来料检验单号(IQC)", example = "IQC20250731001")
    private String iqcCode;
 
    @Schema(description = "IQC 检验结论(字典 mes_qc_check_result)", example = "1")
    private Integer checkResult;
 
    @Schema(description = "物料 ID", example = "1")
    private Long itemId;
 
    @Schema(description = "物料编码", example = "ITEM001")
    private String itemCode;
 
    @Schema(description = "物料名称", example = "产品A")
    private String itemName;
 
    @Schema(description = "批次号", example = "BATCH20250731001")
    private String batchCode;
 
    @Schema(description = "入库数量", example = "100")
    private BigDecimal receivedQuantity;
 
}