zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package com.changhong.epc.parsing.service.transition.billInfo.models;
 
import java.util.HashMap;
import java.util.Map;
 
/**
 * 执行公式必须参数
 * @ClassName: TransverterBillInfoPre
 * @author [九鼎联合科技]
 * @date 2017年7月11日 下午10:35:45
 */
 
/**
 * @ClassName: TransverterBillInfoPre
 * @author [九鼎联合科技]
 * @date 2017年7月22日 下午5:04:20
 */
     
public class TransverterBillInfoPre {
    private String condition;
    private String elementList;
    private Map<String, ? extends Object>  matchingVal = new HashMap<>();
    
    public String getCondition() {
        return condition;
    }
    public void setCondition(String condition) {
        this.condition = condition;
    }
    public String getElementList() {
        return elementList;
    }
    public void setElementList(String elementList) {
        this.elementList = elementList;
    }
    public Map<String, ? extends Object> getMatchingVal() {
        return matchingVal;
    }
    public void setMatchingVal(Map<String, ? extends Object> billHeadMap) {
        this.matchingVal = billHeadMap;
    }
    @Override
    public String toString() {
        return "TransverterBillInfoPre [condition=" + condition + ", elementList=" + elementList + ", matchingVal="
                + matchingVal + "]";
    }
    
    
    
    
}