| | |
| | | package com.yeshi.fanli.service.inter.order.dividents;
|
| | |
|
| | | import com.yeshi.fanli.entity.order.dividents.TeamDividentsRecord;
|
| | | import com.yeshi.fanli.exception.ParamsException;
|
| | | import com.yeshi.fanli.exception.order.dividents.TeamDividentsRecordException;
|
| | |
|
| | | public interface TeamDividentsRecordService {
|
| | |
|
| | | /**
|
| | | * 添加团队分红记录
|
| | | * @Title: addTeamDividentsRecord
|
| | | * @Description: |
| | | * @param record |
| | | * void 返回类型
|
| | | * @throws
|
| | | */
|
| | | public void addTeamDividentsRecord(TeamDividentsRecord record) throws TeamDividentsRecordException, ParamsException;
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.order.dividents; |
| | | |
| | | import com.yeshi.fanli.entity.order.dividents.TeamDividentsRecord; |
| | | import com.yeshi.fanli.exception.ParamsException; |
| | | import com.yeshi.fanli.exception.order.dividents.TeamDividentsRecordException; |
| | | |
| | | public interface TeamDividentsRecordService { |
| | | |
| | | /** |
| | | * 添加团队分红记录 |
| | | * @Title: addTeamDividentsRecord |
| | | * @Description: |
| | | * @param record |
| | | * void 返回类型 |
| | | * @throws |
| | | */ |
| | | public void addTeamDividentsRecord(TeamDividentsRecord record) throws TeamDividentsRecordException, ParamsException; |
| | | |
| | | } |