10 lines
167 B
Plaintext
10 lines
167 B
Plaintext
|
|
package com.bonus.settlement.calc;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public interface IModelCalc {
|
||
|
|
|
||
|
|
public List<BalanceAgreementModelResultBean> calc() throws Exception ;
|
||
|
|
|
||
|
|
}
|