Pu Zhibing
6 天以前 319222137dc86d4020381c06288099e3f34be393
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 {
}