package com.iailab.module.data.ind.data.dto;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年10月04日
|
*/
|
@Data
|
public class IndDataSetFieldDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
private String id;
|
|
/**
|
* 数据集ID
|
*/
|
private String dataSetId;
|
|
/**
|
* 英文名
|
*/
|
private String fieldCode;
|
|
/**
|
* 中文名
|
*/
|
private String fieldName;
|
|
/**
|
* 数据类型
|
*/
|
private String fieldType;
|
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|