1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.java110.acct.integral; import com.java110.dto.integral.DeductionIntegralDto; import com.java110.dto.integral.GiftIntegralDto; public interface IComputeDeductionIntegral { /** * 抵扣积分和金额计算 * * @param communityId * @return */ DeductionIntegralDto deduction(String userId,String orderId, String communityId); }