| | |
| | | @Schema(description = "备注", example = "客户要求尽快处理") |
| | | private String remark; |
| | | |
| | | @Schema(description = "附件 blobId 列表", example = "[1, 2, 3]") |
| | | private List<Long> blobIds; |
| | | |
| | | @Schema(description = "明细行列表") |
| | | private List<Item> items; |
| | | |
| | |
| | | @Schema(description = "是否需要退货", example = "true") |
| | | private Boolean needReturn; |
| | | |
| | | @Schema(description = "部门ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "部门不能为空") |
| | | private Long deptId; |
| | | |
| | | @Schema(description = "原因类型", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | @NotNull(message = "原因类型不能为空") |
| | | private Integer reasonType; |
| | | |
| | | @Schema(description = "具体原因", example = "产品表面有划痕") |
| | | private String reason; |
| | | |
| | | @Schema(description = "备注") |
| | | private String remark; |
| | | } |