ludc
2025-01-16 68fd566d21b3efc3a670a5295289b1801f5a4155
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
package com.vci.web.properties;
 
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * 导出到word的字段映射,需要和模板中的域字段对应
 * @author weidy
 * @date 2020/2/20
 */
@Configuration
@ConfigurationProperties(prefix = "vci.objectservice.ddl.exportword")
public class OsDDLExportWordFieldProperties {
 
 
    /**
     * 表格的名称
     */
    private String tableName = "tableInfo";
 
    /**
     * 表格的名称
     */
    private String title = "tableTitle";
 
    /**
     * 表格的枚举参照生命周期等描述
     */
    private String areaDesc = "tableAreaDesc";
 
    /**
     * 字段表格的名称,需要对应模板中的域字段
     */
    private String columnTableName = "columnInfo";
 
    /**
     * 字段表格的序号
     */
    private String columnIndex = "tableColumnIndex";
 
    /**
     * 字段的英文名称
     */
    private String columnId = "columnId";
 
    /**
     *字段的显示名称
     */
    private String columnName = "columnName";
 
    /**
     * 字段的类型
     */
    private String columnType = "columnType";
 
    /**
     * 字段的约束
     */
    private String columnArea = "columnArea";
 
    /**
     * 字段的特殊描述
     */
    private String columnDesc = "columnDesc";
 
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getAreaDesc() {
        return areaDesc;
    }
 
    public void setAreaDesc(String areaDesc) {
        this.areaDesc = areaDesc;
    }
 
    public String getColumnTableName() {
        return columnTableName;
    }
 
    public void setColumnTableName(String columnTableName) {
        this.columnTableName = columnTableName;
    }
 
    public String getColumnIndex() {
        return columnIndex;
    }
 
    public void setColumnIndex(String columnIndex) {
        this.columnIndex = columnIndex;
    }
 
    public String getColumnId() {
        return columnId;
    }
 
    public void setColumnId(String columnId) {
        this.columnId = columnId;
    }
 
    public String getColumnName() {
        return columnName;
    }
 
    public void setColumnName(String columnName) {
        this.columnName = columnName;
    }
 
    public String getColumnType() {
        return columnType;
    }
 
    public void setColumnType(String columnType) {
        this.columnType = columnType;
    }
 
    public String getColumnArea() {
        return columnArea;
    }
 
    public void setColumnArea(String columnArea) {
        this.columnArea = columnArea;
    }
 
    public String getColumnDesc() {
        return columnDesc;
    }
 
    public void setColumnDesc(String columnDesc) {
        this.columnDesc = columnDesc;
    }
 
    public String getTableName() {
        return tableName;
    }
 
    public void setTableName(String tableName) {
        this.tableName = tableName;
    }
 
    @Override
    public String toString() {
        return "OsDDLExportWordFieldProperties{" +
                "tableName='" + tableName + '\'' +
                ", title='" + title + '\'' +
                ", areaDesc='" + areaDesc + '\'' +
                ", columnTableName='" + columnTableName + '\'' +
                ", columnIndex='" + columnIndex + '\'' +
                ", columnId='" + columnId + '\'' +
                ", columnName='" + columnName + '\'' +
                ", columnType='" + columnType + '\'' +
                ", columnArea='" + columnArea + '\'' +
                ", columnDesc='" + columnDesc + '\'' +
                '}';
    }
}