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