2021-03-15更新

This commit is contained in:
TianSH
2021-03-15 10:15:41 +08:00
parent ee52957d31
commit 867bde24be
145 changed files with 14644 additions and 25602 deletions
@@ -0,0 +1,24 @@
package cn.hellohao.service;
import cn.hellohao.pojo.Album;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @author Hellohao
* @version 1.0
* @date 2019-12-18 22:15
*/
@Service
public interface AlbumService {
Album selectAlbum(Album album);
Integer addAlbum(Album album);
Integer deleteAlbum(String albumkey);
List<Album> selectAlbumURLList(Album album);
}