Pu Zhibing
7 天以前 82118a47410c89e1d9751b3fa7814cc97c3b16da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 {
 
}