update:调整数据类型,删除逻辑

feat:sout在log文件中显示
This commit is contained in:
hello-hao
2023-03-17 17:41:10 +08:00
parent 393ad3138e
commit 8ebdbf6cee
18 changed files with 326 additions and 211 deletions
@@ -26,7 +26,7 @@ public class ImgServiceImpl implements ImgService {
}
@Override
public Integer deleimg(Integer id) {
public Integer deleimg(Long id) {
// TODO Auto-generated method stub
return imgMapper.deleimg(id);
}
@@ -36,7 +36,7 @@ public class ImgServiceImpl implements ImgService {
return imgMapper.deleimgForImgUid(imguid);
}
public Images selectByPrimaryKey(Integer id) {
public Images selectByPrimaryKey(Long id) {
return imgMapper.selectByPrimaryKey(id);
}
@@ -63,7 +63,7 @@ public class ImgServiceImpl implements ImgService {
}
@Override
public Integer deleall(Integer id) {
public Integer deleall(Long id) {
return imgMapper.deleall(id);
}