提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.infra.controller.admin.demo.vo; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.*; |
|
5 |
import java.util.*; |
|
6 |
import java.util.*; |
|
7 |
import com.alibaba.excel.annotation.*; |
|
8 |
|
|
9 |
@Schema(description = "管理后台 - 分类 Response VO") |
|
10 |
@Data |
|
11 |
@ExcelIgnoreUnannotated |
|
12 |
public class InfraCategoryRespVO { |
|
13 |
|
|
14 |
@Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
15 |
@ExcelProperty("编号") |
|
16 |
private Long id; |
|
17 |
|
|
18 |
@Schema(description = "名字", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋头") |
|
19 |
@ExcelProperty("名字") |
|
20 |
private String name; |
|
21 |
|
|
22 |
@Schema(description = "父编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "2048") |
|
23 |
@ExcelProperty("父编号") |
|
24 |
private Long parentId; |
|
25 |
|
|
26 |
} |