feat(wallet): 新增用户钱包余额查询功能

This commit is contained in:
2025-12-10 18:52:38 +08:00
parent 5227b81acb
commit 0d1545f568
8 changed files with 216 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
package com.yolo.keyborad.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.yolo.keyborad.model.entity.KeyboardUserWallet;
/*
* @author: ziin
* @date: 2025/12/10 18:18
*/
public interface KeyboardUserWalletMapper extends BaseMapper<KeyboardUserWallet> {
}