纯粹的图床网站

This commit is contained in:
hellohao
2019-01-30 22:19:38 +08:00
commit 12f29cd2a1
82 changed files with 24770 additions and 0 deletions
@@ -0,0 +1,16 @@
package cn.hellohao.service;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import cn.hellohao.pojo.Images;
public interface ImgService {
List<Images> selectimg(Integer id);
Integer deleimg(Integer id);
Integer countimg(Integer userid);
Images selectByPrimaryKey(Integer id);
Integer counts(Integer userid);
}