package com.iailab.module.data.ind.item.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月11日
 */
@Schema(description = "数据平台 - 指标项 Response VO")
@Data
@ExcelIgnoreUnannotated
public class IndItemRespVO {

    @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 coefficient;

    @Schema(description = "指标精度", example = "")
    private Integer precision;

    @Schema(description = "时间粒度", example = "")
    private String timeGranularity;

    @Schema(description = "数量单位", example = "")
    private String unit;

    @Schema(description = "备注", example = "")
    private String remark;

    @Schema(description = "状态", example = "")
    private Integer status;

    @Schema(description = "固化标识", example = "")
    private String solidifyFlag;

    @Schema(description = "创建者", example = "")
    private String creator;

    @Schema(description = "创建时间", example = "")
    private Date createTime;

    @Schema(description = "更新者", example = "")
    private String updater;

    @Schema(description = "更新时间", example = "")
    private Date updateTime;

    private String atomItemId;

    private IndItemAtomVO atomItem;

    private IndItemDerVO derItem;

    private IndItemCalVO calItem;
}