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
| package org.springblade.binlog.vo;
| import lombok.Data;
|
| /**
| * 字段属性对象
| *
| * @author zrj
| * @since 2024/02/19
| **/
| @Data
| public class DataProperty {
| public int inx;
| /**
| * 列名
| */
| public String colName;
| /**
| * 类型
| */
| public String dataType;
| /**
| * 数据库
| */
| public String schema;
| /**
| * 表
| */
| public String table;
|
| public DataProperty(String schema, String table, int idx, String colName, String dataType) {
| this.schema = schema;
| this.table = table;
| this.colName = colName;
| this.dataType = dataType;
| this.inx = idx;
| }
| }
|
|