ludc
2024-04-12 f21bdede8546a348e2b16ffc3bbe292df7eeba76
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
package com.vci.ubcs.code.vo;
 
import java.util.Map;
 
public class ComponentRule {
    private Map<String,String> dataMap;
    private  String componentRuleValue;
 
    public Map<String, String> getDataMap() {
        return dataMap;
    }
 
    public void setDataMap(Map<String, String> dataMap) {
        this.dataMap = dataMap;
    }
 
    public String getComponentRuleValue() {
        return componentRuleValue;
    }
 
    public void setComponentRuleValue(String componentRuleValue) {
        this.componentRuleValue = componentRuleValue;
    }
 
    @Override
    public String toString() {
        return "ComponentRule{" +
            "dataMap=" + dataMap +
            ", componentRuleValue='" + componentRuleValue + '\'' +
            '}';
    }
}