| | |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.time.LocalDate; |
| | | |
| | | import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
| | | import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY; |
| | | |
| | | /** |
| | | * 管理后台 - MES 销售退货相关 |
| | |
| | | @Schema(description = "退货单名称", example = "销售退货") |
| | | private String name; |
| | | |
| | | @Schema(description = "销售订单 ID", example = "1") |
| | | private Long saleOrderId; |
| | | |
| | | @Schema(description = "销售订单编号", example = "SO202603010001") |
| | | private String salesOrderCode; |
| | | |
| | |
| | | private Integer status; |
| | | |
| | | @Schema(description = "退货日期") |
| | | @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
| | | private LocalDateTime[] returnDate; |
| | | @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY) |
| | | private LocalDate[] returnDate; |
| | | |
| | | } |