| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Schema(description = "管理后台 - MES 供应商退货单 Response VO") |
| | |
| | | private String vendorNickname; |
| | | |
| | | @Schema(description = "退货日期") |
| | | private LocalDate returnDate; |
| | | private LocalDateTime returnDate; |
| | | |
| | | @Schema(description = "退货原因", example = "质量不合格") |
| | | private String returnReason; |
| | |
| | | @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "10") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "BPM 流程实例编号", example = "xxx") |
| | | private String processInstanceId; |
| | | |
| | | @Schema(description = "备注", example = "备注") |
| | | private String remark; |
| | | |