ludc
2023-09-19 8381325223bee254168855b1b697db31fc591b9e
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
package com.vci.rmip.code.client.codeapply.Apply410.object.ubcscode.config;
 
 
/**
 * 编码规则管理-引用码段-参照配置-显示属性配置
 *
 * @author ludc
 * @date 2023/5/19 17:35
 */
public class CodeShowFieldConfigVO extends CodeShowFieldConfig {
 
    private static final long serialVersionUID = -71135592796848692L;
 
    /**
     * 字段类型-显示文本
     */
    private String fieldTypeText;
 
    /**
     * 列固定位置-显示文本
     */
    private String fixedPositionText;
 
    public String getFieldTypeText() {
        return fieldTypeText;
    }
 
    public void setFieldTypeText(String fieldTypeText) {
        this.fieldTypeText = fieldTypeText;
    }
 
    public String getFixedPositionText() {
        return fixedPositionText;
    }
 
    public void setFixedPositionText(String fixedPositionText) {
        this.fixedPositionText = fixedPositionText;
    }
 
    
}