init
This commit is contained in:
@@ -12,7 +12,10 @@ import org.apache.ibatis.annotations.Param;
|
||||
*/
|
||||
public interface CaiAccountMapper extends BaseMapper<CaiAccount> {
|
||||
|
||||
boolean incs(@Param("userId") Long userId, @Param("value") Long value);
|
||||
long incs(@Param("userId") Long userId, @Param("value") Long value);
|
||||
|
||||
void incsCoin(@Param("userId") Long userId, @Param("coin") Long coin, @Param("incomeCoin") Long incomeCoin);
|
||||
|
||||
|
||||
long decrIncomeCoin(@Param("userId") Long userId, @Param("incomeCoin") Long incomeCoin);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.ruoyi.cai.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.cai.domain.CaiGoods;
|
||||
|
||||
/**
|
||||
* 充值配置Mapper接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-24
|
||||
*/
|
||||
public interface CaiGoodsMapper extends BaseMapper<CaiGoods> {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
package com.ruoyi.cai.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.ruoyi.cai.domain.CaiWithdrawExchange;
|
||||
|
||||
/**
|
||||
* 提现 - 兑换配置Mapper接口
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-24
|
||||
*/
|
||||
public interface CaiWithdrawExchangeMapper extends BaseMapper<CaiWithdrawExchange> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user