22 lines
585 B
Java
22 lines
585 B
Java
package com.tenwa.reckon.adjustInterest.service;
|
|
|
|
import com.tenwa.reckon.bean.ConditionBean;
|
|
import com.tenwa.reckon.bean.FundRentPlanBean;
|
|
import com.tenwa.reckon.bean.InterContBean;
|
|
import com.tenwa.reckon.bean.TabCalBean;
|
|
|
|
public interface TransRateService {
|
|
|
|
/**
|
|
* 调息处理方法
|
|
*
|
|
* @param cb 租金计划的商务条件
|
|
* @param ol dRentPlanContext 需要调息的租金计划
|
|
* @param icb 调息上下文信息
|
|
* @return
|
|
* @throws Exception
|
|
*/
|
|
public void processPmtTranRate(ConditionBean cb, FundRentPlanBean oldRentPlanContext, InterContBean icb,TabCalBean tcb) throws Exception;
|
|
|
|
}
|