package com.artfess.dataShare.dataCollect.vo;

import com.artfess.dataShare.dataCollect.model.BizClusterTable;
import com.artfess.dataShare.dataCollect.model.BizClusterTableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.util.List;

@ApiModel(value="BizClusterField对象", description="汇聚表详情")
@Data
public class TableDetailVo {

    //@ApiModelProperty(value = "模型信息")
    //BizClusterMould mould;

    @ApiModelProperty(value = "表信息")
    BizClusterTable table;

    @ApiModelProperty(value = "表字段")
    List<BizClusterTableField> fieldList;
}
