| | |
| | | package cc.mrbird.febs.dapp.mapper; |
| | | |
| | | import cc.mrbird.febs.dapp.entity.DappAccountMoneyChangeEntity; |
| | | import cc.mrbird.febs.dapp.entity.IgtOnHookPlanOrder; |
| | | import cc.mrbird.febs.dapp.vo.AdminIgtOnHookPlanOrderVo; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | |
| | | Integer updateAvaAmountById(@Param("id")Long id,@Param("amount")BigDecimal amount); |
| | | |
| | | Integer addAvaAmountById(@Param("id")Long id,@Param("amount")BigDecimal amount); |
| | | |
| | | IgtOnHookPlanOrder selectByMemberId(@Param("memberId")Long memberId); |
| | | |
| | | Integer AddProfitById(@Param("id")Long id, @Param("profit")BigDecimal balance); |
| | |
| | | List<IgtOnHookPlanOrder> selectByCreateTime(@Param("createTime")String format); |
| | | |
| | | IPage<AdminIgtOnHookPlanOrderVo> findMemberPlanListInPage(Page<IgtOnHookPlanOrder> page, @Param("record")IgtOnHookPlanOrder igtOnHookPlanOrder); |
| | | |
| | | List<Long> selectIdsByState(@Param("state")int i); |
| | | |
| | | void updateByIds(List<Long> ids); |
| | | |
| | | IPage<DappAccountMoneyChangeEntity> findFlowListInPage(Page<DappAccountMoneyChangeEntity> page, @Param("orderId")Long id); |
| | | |
| | | void updatePlanOrder(); |
| | | } |