package com.supersavedriving.user.modular.system.service.impl;
|
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
import com.supersavedriving.user.modular.system.dao.PlatformRechargeRecordMapper;
|
import com.supersavedriving.user.modular.system.model.PlatformRechargeRecord;
|
import com.supersavedriving.user.modular.system.service.IPlatformRechargeRecordService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* @author zhibing.pu
|
* @date 2023/5/6 14:11
|
*/
|
@Service
|
public class PlatformRechargeRecordServiceImpl extends ServiceImpl<PlatformRechargeRecordMapper, PlatformRechargeRecord> implements IPlatformRechargeRecordService {
|
}
|