xuhy
2023-02-22 6e2ad8bbee4a338c76b2b112a0a880883b8d8eb3
1
2
3
4
5
6
7
8
9
10
11
package com.supersavedriving.driver.modular.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.supersavedriving.driver.modular.system.dao.ImgMapper;
import com.supersavedriving.driver.modular.system.model.Img;
import com.supersavedriving.driver.modular.system.service.IImgService;
import org.springframework.stereotype.Service;
 
@Service
public class ImgServiceImpl extends ServiceImpl<ImgMapper, Img> implements IImgService {
}