Pu Zhibing
2024-12-24 59e3a93e27627653dd049bb9653716f421e027a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.stylefeng.guns.modular.crossCity.server.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.crossCity.dao.DriverLineMapper;
import com.stylefeng.guns.modular.crossCity.model.DriverLine;
import com.stylefeng.guns.modular.crossCity.server.IDriverLineService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @Date 2024/12/22 0:04
 */
@Service
public class DriverLineServiceImpl extends ServiceImpl<DriverLineMapper, DriverLine> implements IDriverLineService {
}