| | |
| | | import cc.mrbird.febs.dapp.entity.IgtOnHookPlanOrder; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public interface ApiIgtOnHookPlanService extends IService<IgtOnHookPlanOrder> { |
| | | |
| | | FebsResponse start(ApiStartDto apiStartDto); |
| | |
| | | FebsResponse endPlan(Long id); |
| | | |
| | | FebsResponse planInfo(); |
| | | |
| | | /** |
| | | * 获取用户挂机总收益 |
| | | * @param memberId |
| | | * @return |
| | | */ |
| | | BigDecimal getTotalFrofit(Long memberId); |
| | | |
| | | FebsResponse awardInfo(); |
| | | |
| | | void updatePlanOrderItem(); |
| | | |
| | | void endOnHookMessage(Long orderId); |
| | | |
| | | void memberCoinInsideMessage(Long withdrawId); |
| | | } |