package cn.hellohao.service; import cn.hellohao.pojo.Images; import cn.hellohao.pojo.User; import org.springframework.stereotype.Service; import java.util.List; @Service public interface ImgService { List selectimg(Images images); Integer insertImgData(Images images); Integer deleimg(Long id); Integer deleimgForImgUid(String imguid); Integer countimg(Integer userid); Images selectByPrimaryKey(Long id); Integer counts(Integer userid); Integer setImg(Images images); Integer deleimgname(String imgname); Integer deleall(Long id); List gettimeimg(String time); Long getusermemory(Integer userid); Long getsourcememory(Integer source); Integer md5Count(Images images); List selectImgUrlByMD5(Images images); List RecentlyUploaded(Integer userid); List RecentlyUser(); List getyyyy(Integer userid); List countByM(Images images); Images selectImgUrlByImgUID( String imguid); }