mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
17 lines
340 B
Java
17 lines
340 B
Java
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);
|
|
}
|