liujie
1 天以前 74f8b8074a2fb391b5363b4dca5f99bf31993430
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 {
}