6 天以前 0ed338976c6cabb5ee17983e3ee1bedb529a0ccb
yudao-module-erp/src/main/java/cn/iocoder/yudao/module/erp/controller/admin/purchase/vo/request/ErpPurchaseRequestRespVO.java
@@ -43,6 +43,9 @@
    @Schema(description = "供应商名称", example = "供应商A")
    private String supplierName;
    @Schema(description = "定金金额", example = "1000.00")
    private BigDecimal depositPrice;
    @Schema(description = "合计数量", requiredMode = Schema.RequiredMode.REQUIRED)
    private BigDecimal totalCount;
@@ -57,6 +60,9 @@
    @Schema(description = "生成的采购订单号", example = "CGDD001")
    private String orderNo;
    @Schema(description = "入库状态(0:未入库 1:部分入库 2:全部入库)", example = "0")
    private Integer inStatus;
    @Schema(description = "附件地址", example = "https://xxx.com/xxx.pdf")
    private String fileUrl;
@@ -113,6 +119,12 @@
        @Schema(description = "备注", example = "备注")
        private String remark;
        @Schema(description = "是否需要来料检验", example = "true")
        private Boolean qcCheckFlag;
        @Schema(description = "入库数量", example = "10.00")
        private BigDecimal inCount;
    }
}