陶杰
2024-10-22 c144a01a7fff4e9bd169eb9d03b6ea58bc8bafb6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mzl.flower.service.impl.wallet;
 
import com.mzl.flower.entity.wallet.WithdrawRecordDO;
import com.mzl.flower.mapper.wallet.WithdrawRecordMapper;
import com.mzl.flower.service.wallet.WithdrawRecordService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 *  服务实现类
 * </p>
 *
 * @author @TaoJie
 * @since 2024-10-22
 */
@Service
public class WithdrawRecordServiceImpl extends ServiceImpl<WithdrawRecordMapper, WithdrawRecordDO> implements WithdrawRecordService {
 
}