重构版功能实现

This commit is contained in:
tiansh
2021-10-28 18:54:05 +08:00
parent 3a03c965e1
commit 551bb6c20a
64 changed files with 881 additions and 6794 deletions
@@ -211,8 +211,8 @@ public class ImgServiceImpl implements ImgService {
}
@Override
public Integer md5Count(String md5key) {
return imgMapper.md5Count(md5key);
public Integer md5Count(Images images) {
return imgMapper.md5Count(images);
}
@Override
@@ -244,4 +244,9 @@ public class ImgServiceImpl implements ImgService {
return imgMapper.countByM(images);
}
@Override
public Images selectImgUrlByImgUID(String imguid) {
return imgMapper.selectImgUrlByImgUID(imguid);
}
}