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
@@ -1,27 +1,25 @@
package cn.hellohao.service;
import java.util.List;
import cn.hellohao.pojo.User;
import org.apache.ibatis.annotations.Param;
import cn.hellohao.pojo.Images;
import cn.hellohao.pojo.User;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public interface ImgService {
List<Images> selectimg(Images images);
Integer insertImgData(Images images);
Integer deleimg(Integer id);
Integer deleimg(Long id);
Integer deleimgForImgUid(String imguid);
Integer countimg(Integer userid);
Images selectByPrimaryKey(Integer id);
Images selectByPrimaryKey(Long id);
Integer counts(Integer userid);
@@ -29,7 +27,7 @@ public interface ImgService {
Integer deleimgname(String imgname);
Integer deleall(Integer id);
Integer deleall(Long id);
List<Images> gettimeimg(String time);