ludc
2023-04-07 7df1d61319149a666e8b2801a3c89c1d80900d2e
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package com.vci.ubcs.code.po;
 
/**
 * 主题库分类的导入导出对象
 * @author weidy
 * @date 2022-04-01
 */
public class CodeClassifyPO implements java.io.Serializable{
    /**
     * 序列化
     */
    private static final long serialVersionUID = 6101784029360306020L;
    /**
     * 所在数据行
     */
    private String rowIndex;
 
 
    /**
     * 分类编号
     */
    private String id;
    /**
     * 分类名称
     */
    private String name;
 
    /**
     * 描述
     */
    private String description;
 
    /**
     * 编码规则编号
     */
    private String codeRuleId;
 
    /**
     * 业务类型编号
     */
    private String btmTypeId;
 
    /**
     * 查重规则编号
     */
    private String keyRepeatRuleId;
 
    /**
     * 分类路径
     */
    private String path;
 
    /**
     * 状态文本
     */
    private String lcStatusText;
 
    /**
     * 状态
     */
    private String lcStatus;
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getRowIndex() {
        return rowIndex;
    }
 
    public void setRowIndex(String rowIndex) {
        this.rowIndex = rowIndex;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCodeRuleId() {
        return codeRuleId;
    }
 
    public void setCodeRuleId(String codeRuleId) {
        this.codeRuleId = codeRuleId;
    }
 
    public String getBtmTypeId() {
        return btmTypeId;
    }
 
    public void setBtmTypeId(String btmTypeId) {
        this.btmTypeId = btmTypeId;
    }
 
    public String getKeyRepeatRuleId() {
        return keyRepeatRuleId;
    }
 
    public void setKeyRepeatRuleId(String keyRepeatRuleId) {
        this.keyRepeatRuleId = keyRepeatRuleId;
    }
 
    public String getPath() {
        return path;
    }
 
    public void setPath(String path) {
        this.path = path;
    }
 
    public String getLcStatusText() {
        return lcStatusText;
    }
 
    public void setLcStatusText(String lcStatusText) {
        this.lcStatusText = lcStatusText;
    }
 
    public String getLcStatus() {
        return lcStatus;
    }
 
    public void setLcStatus(String lcStatus) {
        this.lcStatus = lcStatus;
    }
 
    @Override
    public String toString() {
        return "CodeClassifyPO{" +
                "rowIndex='" + rowIndex + '\'' +
                ", id='" + id + '\'' +
                ", name='" + name + '\'' +
                ", description='" + description + '\'' +
                ", codeRuleId='" + codeRuleId + '\'' +
                ", btmTypeId='" + btmTypeId + '\'' +
                ", keyRepeatRuleId='" + keyRepeatRuleId + '\'' +
                ", path='" + path + '\'' +
                ", lcStatusText='" + lcStatusText + '\'' +
                ", lcStatus='" + lcStatus + '\'' +
                '}';
    }
}