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 {
|
|
}
|