提交 | 用户 | 时间
|
f1162e
|
1 |
package com.iailab.module.data.ind.category.vo; |
潘 |
2 |
|
e41062
|
3 |
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
潘 |
4 |
import com.alibaba.excel.annotation.ExcelProperty; |
|
5 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import java.util.Date; |
|
9 |
|
f1162e
|
10 |
/** |
潘 |
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年09月10日 |
|
14 |
*/ |
e41062
|
15 |
@Schema(description = "数据平台 - 指标分类 Response VO") |
潘 |
16 |
@Data |
|
17 |
@ExcelIgnoreUnannotated |
f1162e
|
18 |
public class IndItemCategoryRespVO { |
e41062
|
19 |
|
潘 |
20 |
@Schema(description = "指标分类ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
21 |
@ExcelProperty("指标分类ID") |
|
22 |
private String id; |
|
23 |
|
|
24 |
@Schema(description = "标签", example = "") |
|
25 |
private String label; |
|
26 |
|
|
27 |
@Schema(description = "父ID", example = "") |
|
28 |
private String pid; |
|
29 |
|
|
30 |
@Schema(description = "排序", example = "") |
|
31 |
private Integer sort; |
|
32 |
|
|
33 |
@Schema(description = "创建者", example = "") |
|
34 |
private String creator; |
|
35 |
|
|
36 |
@Schema(description = "创建时间", example = "") |
|
37 |
private Date createTime; |
|
38 |
|
|
39 |
@Schema(description = "更新者", example = "") |
|
40 |
private String updater; |
|
41 |
|
|
42 |
@Schema(description = "更新时间", example = "") |
|
43 |
private Date updateTime; |
f1162e
|
44 |
} |