田源
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
55
56
57
58
59
60
61
62
63
64
65
66
package com.vci.ubcs.ddl.properties;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * Description:
 *
 * @author LiHang
 * @date 2023/4/24
 */
@Data
@Configuration
@ConfigurationProperties(prefix = "vci.ubcs.ddl.exportword")
public class DdlExportWordFieldProperties {
    /**
     * 表格的名称
     */
    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";
}