package com.vci.ubcs.ddl.bo;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* Description:
|
*
|
* @author LiHang
|
* @date 2023/4/24
|
*/
|
@Data
|
public class DdlTableInDataBaseBO implements Serializable {
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = -4749100343717030972L;
|
/**
|
* 字段名称
|
*/
|
private String id;
|
|
/**
|
* 字段描述
|
*/
|
private String name;
|
|
/**
|
* 数据类型
|
*/
|
private String attrDataType;
|
|
/**
|
* 属性的长度
|
*/
|
private Integer attributeLength;
|
|
/**
|
* 是否可以为空
|
*/
|
private String nullableFlag;
|
|
/**
|
* 小数精度位数
|
*/
|
private Integer precisionLength;
|
|
/**
|
* 小数刻度位数
|
*/
|
private Integer scaleLength;
|
}
|