package com.iailab.module.data.plan.item.vo; import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; import com.alibaba.excel.annotation.ExcelProperty; import com.iailab.module.data.ind.item.vo.IndItemAtomVO; import com.iailab.module.data.ind.item.vo.IndItemCalVO; import com.iailab.module.data.ind.item.vo.IndItemDerVO; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.util.Date; /** * @author PanZhibao * @Description * @createTime 2024年09月11日 */ @Schema(description = "数据平台 - 指标项 Response VO") @Data @ExcelIgnoreUnannotated public class PlanItemRespVO { @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") @ExcelProperty("ID") private String id; @Schema(description = "指标编码", example = "") private String itemNo; @Schema(description = "指标名称", example = "") private String itemName; @Schema(description = "指标类型", example = "") private String itemType; @Schema(description = "指标分类", example = "") private String itemCategory; @Schema(description = "指标分类", example = "") private String itemCategoryName; @Schema(description = "时间粒度", example = "") private String timeGranularity; @Schema(description = "数据集", example = "") private String dataSet; @Schema(description = "备注", example = "") private String remark; @Schema(description = "状态", example = "") private Integer status; @Schema(description = "创建者", example = "") private String creator; @Schema(description = "创建时间", example = "") private Date createTime; @Schema(description = "更新者", example = "") private String updater; @Schema(description = "更新时间", example = "") private Date updateTime; }