| | |
| | | @Schema(description = "联系人编号", example = "1") |
| | | private Long contactId; |
| | | |
| | | @Schema(description = "销售订单编号", example = "1") |
| | | @Schema(description = "销售订单编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "销售订单号不能为空") |
| | | private Long saleOrderId; |
| | | |
| | | @Schema(description = "销售订单号", example = "SO202401010001") |
| | | @Schema(description = "销售订单号", requiredMode = Schema.RequiredMode.REQUIRED, example = "SO202401010001") |
| | | @NotEmpty(message = "销售订单号不能为空") |
| | | private String saleOrderNo; |
| | | |
| | | @Schema(description = "合同编号", example = "1") |
| | |
| | | @Schema(description = "备注", example = "客户要求尽快处理") |
| | | private String remark; |
| | | |
| | | @Schema(description = "附件 blobId 列表", example = "[1, 2, 3]") |
| | | private List<Long> blobIds; |
| | | |
| | | @Schema(description = "明细行列表") |
| | | private List<Item> items; |
| | | |