提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.infra.controller.admin.demo.demo02.vo; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
import org.springframework.format.annotation.DateTimeFormat; |
|
6 |
|
|
7 |
import java.time.LocalDateTime; |
|
8 |
|
|
9 |
import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
|
10 |
|
|
11 |
@Schema(description = "管理后台 - 示例分类列表 Request VO") |
|
12 |
@Data |
|
13 |
public class Demo02CategoryListReqVO { |
|
14 |
|
|
15 |
@Schema(description = "名字", example = "iailab") |
|
16 |
private String name; |
|
17 |
|
|
18 |
@Schema(description = "父级编号", example = "6080") |
|
19 |
private Long parentId; |
|
20 |
|
|
21 |
@Schema(description = "创建时间") |
|
22 |
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
|
23 |
private LocalDateTime[] createTime; |
|
24 |
|
|
25 |
} |