| | |
| | | |
| | | // ========== 供应商 ========== |
| | | |
| | | @Schema(description = "供应商 ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "10") |
| | | @NotNull(message = "供应商不能为空") |
| | | @Schema(description = "供应商 ID", example = "10") |
| | | private Long vendorId; |
| | | |
| | | @Schema(description = "供应商批次号", example = "VB20250101") |
| | |
| | | @NotNull(message = "产品物料不能为空") |
| | | private Long itemId; |
| | | |
| | | @Schema(description = "质检方案 ID", example = "5") |
| | | private Long templateId; |
| | | |
| | | // ========== 数量 ========== |
| | | |
| | | @Schema(description = "本次接收数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100") |