dashboard
repositories
filestore
activity
search
login
main
/
beauty-erp
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
modify
wzy
2021-01-26
a918381d1910d16f991d09188341ff63ed13d4f1
[beauty-erp.git]
/
zq-erp
/
src
/
main
/
java
/
com
/
matrix
/
system
/
hiveErp
/
analysUtil
/
Caculate.java
1
2
3
4
5
6
7
8
9
10
package com.matrix.system.hiveErp.analysUtil;
import java.util.List;
import java.util.Map;
/**
* 明细数值计算器
*/
public interface Caculate<T> {
public Map<String, T> exec(List<StatisticsTimeDaoParam> timeSpaceParam , Long shopId, Long companyId);
}