| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | BigDecimal selectAllBalance(@Param("accountType") String accountType); |
| | | |
| | | List<DappMemberEntity> selectMemberByAccountType(@Param("accountType") String accountType); |
| | | |
| | | List<DappMemberEntity> selectChildMemberDirectOrNot(@Param("inviteId") String inviteId, @Param("type") Integer type, @Param("status") Integer status); |
| | | |
| | | BigDecimal selectChildHoldAmount(@Param("inviteId") String inviteId); |
| | | |
| | | List<DappMemberEntity> selectMakerAddress(); |
| | | |
| | | int updateMemberActive(); |
| | | int updateMemberActiveV2(@Param("memberId") Long memberId); |
| | | |
| | | DappMemberEntity selectNewestDirectMember(@Param("inviteId") String inviteId); |
| | | |
| | | List<DappMemberEntity> selectMemberListNeedProfit(); |
| | | |
| | | List<DappMemberEntity> selectListByDate(@Param("date") Date date); |
| | | } |