package com.stylefeng.guns.modular.system.service.impl;
|
|
import com.stylefeng.guns.modular.system.model.TbCarRental;
|
import com.stylefeng.guns.modular.system.dao.TbCarRentalMapper;
|
import com.stylefeng.guns.modular.system.service.ITbCarRentalService;
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 租车 服务实现类
|
* </p>
|
*
|
* @author stylefeng
|
* @since 2022-05-10
|
*/
|
@Service
|
public class TbCarRentalServiceImpl extends ServiceImpl<TbCarRentalMapper, TbCarRental> implements ITbCarRentalService {
|
|
}
|