mirror of
https://github.com/Hello-hao/Tbed.git
synced 2024-04-21 12:32:10 +00:00
29 lines
571 B
Java
29 lines
571 B
Java
package cn.hellohao.dao;
|
|
|
|
import cn.hellohao.pojo.Album;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author Hellohao
|
|
* @version 1.0
|
|
* @date 2019-12-18 22:15
|
|
*/
|
|
@Mapper
|
|
public interface AlbumMapper {
|
|
|
|
Album selectAlbum(Album album);
|
|
|
|
Integer addAlbum(Album album);
|
|
|
|
Integer deleteAlbum(@Param("albumkey") String albumkey);
|
|
|
|
List<Album> selectAlbumURLList(Album album);
|
|
|
|
Integer selectAlbumCount(@Param("userid") Integer userid);
|
|
|
|
Integer updateAlbum(Album album);
|
|
}
|