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";
|
}
|