| | |
| | | @Schema(description = "定金金额,单位:元", requiredMode = Schema.RequiredMode.REQUIRED, example = "7127") |
| | | private BigDecimal depositPrice; |
| | | |
| | | @Schema(description = "附件地址", example = "https://www.iocoder.cn") |
| | | @ExcelProperty("附件地址") |
| | | private String fileUrl; |
| | | |
| | | @Schema(description = "备注", example = "你猜") |
| | | @ExcelProperty("备注") |
| | | private String remark; |
| | |
| | | @Schema(description = "采购入库数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | private BigDecimal inCount; |
| | | |
| | | @Schema(description = "入库状态(0:未入库 1:部分入库 2:全部入库)", example = "0") |
| | | private Integer inStatus; |
| | | |
| | | // ========== 采购退货(出库)) ========== |
| | | |
| | | @Schema(description = "采购退货数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |