Pu Zhibing
2024-12-27 6c0d8fb2db64b8982c4162c7527e72841547110b
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 {
}