init
This commit is contained in:
@@ -14,12 +14,12 @@ import org.apache.ibatis.annotations.Param;
|
||||
*/
|
||||
public interface AccountMapper extends BaseMapper<Account> {
|
||||
|
||||
long decrCoin(@Param("userId") Long userId, @Param("coin") Long coin);
|
||||
boolean decrCoin(@Param("userId") Long userId, @Param("coin") Long coin);
|
||||
|
||||
long incsCoin(@Param("userId") Long userId, @Param("coin") Long coin);
|
||||
boolean incsCoin(@Param("userId") Long userId, @Param("coin") Long coin);
|
||||
|
||||
void incsIncomeCoin(@Param("userId") Long userId, @Param("incomeCoin") Long incomeCoin);
|
||||
long decrIncomeCoin(@Param("userId") Long userId, @Param("incomeCoin") Long incomeCoin);
|
||||
boolean incsIncomeCoin(@Param("userId") Long userId, @Param("incomeCoin") Long incomeCoin);
|
||||
boolean decrIncomeCoin(@Param("userId") Long userId, @Param("incomeCoin") Long incomeCoin);
|
||||
|
||||
Page<AccountAdminVo> pageAdmin(@Param("build") Page<Object> build, @Param("bo") AccountAdminVo bo);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user