1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.changhong.epc.count.service.count.execution;
|
| import java.util.Set;
|
| import com.changhong.epc.bean.count.MasterInfo;
| import com.changhong.epc.bean.tenant.norm.extend.AppStanderExtend;
|
| public interface DefCountCore {
|
| /**
| * 核心维度比较
| * @Title: countCore
| * @param @param all
| * @param @param sbi
| * @param @param asd
| * @param @return 设定文件
| * @return Object 返回类型
| * @throws
| */
| public Boolean countCore(AppStanderExtend row, Set<MasterInfo> all);
|
|
| }
|
|