Pu Zhibing
2025-03-21 e102aefb00170246d40995d8d7e53cad2385e4d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.stylefeng.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.system.dao.VehicleMapper;
import com.stylefeng.guns.modular.system.model.Vehicles;
import com.stylefeng.guns.modular.system.service.IVehicleService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @Date 2025/3/4 15:42
 */
@Service
public class VehicleServiceImpl extends ServiceImpl<VehicleMapper, Vehicles> implements IVehicleService {
}