This commit is contained in:
77
2024-04-21 01:03:14 +08:00
parent bd9eb02713
commit 96411407b8
12 changed files with 250 additions and 14 deletions

View File

@@ -0,0 +1,14 @@
package com.ruoyi.xq.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.xq.domain.UserBankCard;
/**
* 用户银行卡Mapper接口
*
* @author 77
* @date 2024-04-21
*/
public interface UserBankCardMapper extends BaseMapper<UserBankCard> {
}