| | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Set; |
| | | |
| | | public interface DappSystemService { |
| | | |
| | | SystemDto system(); |
| | | |
| | | void achieveTree(Long memberId); |
| | | |
| | | /** |
| | | * 投入收益 |
| | |
| | | void contractAnDaoMsg(Long flowId); |
| | | |
| | | void contractAnDaoInMsg(Long flowId); |
| | | |
| | | void speedPayOrderMsg(Long orderId); |
| | | |
| | | void speedAutoLevelUpMsg(Long memberId); |
| | | |
| | | void memberPerk(); |
| | | |
| | | void speedAutoLevelUpTeamMsg(Long memberId); |
| | | |
| | | BigDecimal getRealNum(Long memberId,BigDecimal amount); |
| | | |
| | | void directMemberPerk(); |
| | | |
| | | void speedDirectPerkMsg(Long memberId); |
| | | |
| | | void teamStaticPerk(); |
| | | |
| | | Set<DappMemberEntity> updateAchieve(); |
| | | |
| | | void speedSalePackageMsg(Long flowId); |
| | | |
| | | void updatePackage(Set<DappMemberEntity> dappMemberEntities); |
| | | } |