puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.stylefeng.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.stylefeng.guns.modular.system.dao.TYouTuiDriverMapper;
import com.stylefeng.guns.modular.system.model.TYouTuiDriver;
import com.stylefeng.guns.modular.system.service.ITYouTuiDriverService;
import org.springframework.stereotype.Service;
 
 
/**
* 用户优推数据
* @author pzb
* @Date 2023/2/22 14:06
*/
@Service
public class TYouTuiDriverServiceImpl extends ServiceImpl<TYouTuiDriverMapper, TYouTuiDriver> implements ITYouTuiDriverService {
}