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 + "]";
|
}
|
|
|
|
|
}
|