1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.changhong.epc.count.service.count.execution;
|
| import com.changhong.epc.count.service.count.data.paramiter.IParamIter;
| import com.changhong.epc.count.service.count.model.UnitInfo;
|
| /**
| * 计算器
| * @ClassName: ICounter
| * @author [九鼎联合科技]
| * @date 2017年8月31日 上午9:57:38
| * @param <A>
| * @param <T>
| */
| public interface ICounter<A,T> {
|
| Boolean exeCount(A a, IParamIter<T> iparml);
|
| /**
| * 如果金额为系统变量 调用此方法可以获得金额
| * @return
| */
| Double gainMoney();
|
| }
|
|