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