UserFundCountService.java 432 Bytes
Newer Older
zp's avatar
zp committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.tanpu.fund.service;

/**
 * 用户基金相关统计
 */
public interface UserFundCountService {

    /**
     * 计算用户组合基金中各基金认购份额
     *
     * @param pFundId 组合基金ID
     * @param userId 用户Id
     */
    void share(String pFundId, String userId);

    /**
     * 计算组合基金配比
     *
     * @param fundId
     */
    void matchRatio(String fundId, String userId);
}