无关风月
4 天以前 c72910d2b90f74d23e770717d80921b4fd064d48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.account.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.account.api.model.UserWithdraw;
import com.ruoyi.account.mapper.UserWithdrawMapper;
import com.ruoyi.account.service.IUserWithdrawService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 用户提现记录 服务实现类
 * </p>
 *
 * @author lingma
 * @since 2025-04-05
 */
@Service
public class UserWithdrawServiceImpl extends ServiceImpl<UserWithdrawMapper, UserWithdraw> implements IUserWithdrawService {
 
}