puzhibing
2023-08-17 9e4440e8ce1ed3c72932f3f62f4d05f55c9080e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.supersavedriving.driver.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.supersavedriving.driver.modular.system.dao.DriverOnlineTimeMapper;
import com.supersavedriving.driver.modular.system.model.DriverOnlineTime;
import com.supersavedriving.driver.modular.system.service.IDriverOnlineTimeService;
import org.springframework.stereotype.Service;
 
/**
 * @author zhibing.pu
 * @Date 2023/7/30 2:25
 */
@Service
public class DriverOnlineTimeServiceImpl extends ServiceImpl<DriverOnlineTimeMapper, DriverOnlineTime> implements IDriverOnlineTimeService {
}