lisy
2023-07-10 931a2d10b1617cdd0c29a30cd21c9304e7812a1e
1
2
3
4
5
6
7
8
9
10
package com.dsh.guns.modular.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.course.mapper.DriverVerifyMapper;
import com.dsh.guns.modular.system.model.DriverVerify;
import com.dsh.guns.modular.system.service.DriverVerifyService;
import org.springframework.stereotype.Service;
@Service
public class DriverVerifyServiceImpl  extends ServiceImpl<DriverVerifyMapper, DriverVerify> implements DriverVerifyService {
}