| | |
| | | @NotNull(message = "供应商编号不能为空") |
| | | private Long supplierId; |
| | | |
| | | @Schema(description = "关联的来票编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "25787") |
| | | @NotNull(message = "关联来票编号不能为空") |
| | | private Long invoiceId; |
| | | |
| | | @Schema(description = "付款账户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "28989") |
| | | @NotNull(message = "付款账户编号不能为空") |
| | | private Long accountId; |
| | |
| | | @Schema(description = "备注", example = "你猜") |
| | | private String remark; |
| | | |
| | | @Schema(description = "附件 blobId 列表", example = "[1, 2, 3]") |
| | | private List<Long> blobIds; |
| | | |
| | | @Schema(description = "付款项列表", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotEmpty(message = "付款项列表不能为空") |
| | | @Valid |