| | |
| | | @Schema(description = "供应商名称", example = "供应商A") |
| | | private String supplierName; |
| | | |
| | | @Schema(description = "定金金额", example = "1000.00") |
| | | private BigDecimal depositPrice; |
| | | |
| | | @Schema(description = "合计数量", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | private BigDecimal totalCount; |
| | | |
| | |
| | | |
| | | @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; |
| | |
| | | @Schema(description = "备注", example = "备注") |
| | | private String remark; |
| | | |
| | | @Schema(description = "是否需要来料检验", example = "true") |
| | | private Boolean qcCheckFlag; |
| | | |
| | | @Schema(description = "入库数量", example = "10.00") |
| | | private BigDecimal inCount; |
| | | |
| | | } |
| | | |
| | | } |