田源
2023-05-09 d2570148ec3884de3af721bd99c4b7acbbdee075
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
}