package com.iailab.module.data.ind.data.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 IndDataSetRespVO {
|
|
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@ExcelProperty("ID")
|
private String id;
|
|
@Schema(description = "名称", example = "")
|
private String name;
|
|
@Schema(description = "数据源", example = "")
|
private String dataSource;
|
|
@Schema(description = "查询语句", example = "")
|
private String querySql;
|
|
@Schema(description = "备注", example = "")
|
private String remark;
|
|
@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;
|
}
|