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;
|
}
|