| | |
| | | @NotEmpty(message = "通知单名称不能为空") |
| | | private String name; |
| | | |
| | | @Schema(description = "销售订单编号", example = "SO202603010001") |
| | | private String salesOrderCode; |
| | | |
| | | @Schema(description = "客户编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "客户编号不能为空") |
| | | private Long clientId; |
| | | |
| | | @Schema(description = "销售订单ID", example = "1") |
| | | private Long saleOrderId; |
| | | |
| | | @Schema(description = "销售订单号", example = "SO202603010001") |
| | | private String saleOrderCode; |
| | | |
| | | @Schema(description = "发货日期", requiredMode = Schema.RequiredMode.REQUIRED) |
| | | @NotNull(message = "发货日期不能为空") |
| | | private LocalDateTime salesDate; |