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
package com.changhong.epc.count.service.count.logic;
 
import com.changhong.epc.bean.tenant.norm.extend.AppStanderExtend;
import com.changhong.epc.bean.tenant.norm.extend.SuppStanderExtend;
import com.changhong.epc.constter.count.nomr.CountCoreKey;
import com.changhong.epc.count.service.count.data.condition.ICountConditionIter;
import com.changhong.epc.count.service.count.data.paramiter.IParamIter;
import com.changhong.epc.count.service.count.model.CountResult;
import com.changhong.epc.count.service.count.model.UnitInfo;
 
/**
 * 计算费用复杂逻辑计算
 * @ClassName: ICountLogic
 * @author [九鼎联合科技]
 * @date 2017年8月31日 下午11:09:31
 */
public interface ICountLogic extends CountCoreKey {
    
    /**
     * 费用计算;逻辑
     * @param iparm
     * @param icountCondition
     * @return
     */
    CountResult countLogic(IParamIter<UnitInfo> iparm,
            ICountConditionIter<AppStanderExtend, SuppStanderExtend, UnitInfo> icountCondition);
 
    /**
     * 获得空的返回值
     * @return
     */
    CountResult getEmptyResult();
 
}