ludc
2023-11-15 4136c16e52716975ff05e3b066f6719c5b7e2bd8
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
package com.vci.rmip.code.client.codeapply.Apply410.object.ubcscode.config;
 
 
/**
 * 编码规则管理-引用码段-参照配置-搜索条件配置
 *
 * @author ludc
 * @date 2023/5/19 17:36
 */
 
public class CodeSrchCondConfigVO extends CodeSrchCondConfig {
 
    private static final long serialVersionUID = -51655155561881523L;
 
    /**
     * 筛选类型
     */
    private String filterTypeText;
 
    public String getFilterTypeText() {
        return filterTypeText;
    }
 
    public void setFilterTypeText(String filterTypeText) {
        this.filterTypeText = filterTypeText;
    }
    
 
}