mirror of
https://github.com/201206030/novel-plus.git
synced 2026-01-19 06:51:02 +08:00
31 lines
525 B
Java
31 lines
525 B
Java
package com.java2nb.novel.service;
|
|
|
|
import com.java2nb.novel.domain.FriendLinkDO;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
*
|
|
*
|
|
* @author xiongxy
|
|
* @email 1179705413@qq.com
|
|
* @date 2023-04-14 15:12:25
|
|
*/
|
|
public interface FriendLinkService {
|
|
|
|
FriendLinkDO get(Integer id);
|
|
|
|
List<FriendLinkDO> list(Map<String, Object> map);
|
|
|
|
int count(Map<String, Object> map);
|
|
|
|
int save(FriendLinkDO friendLink);
|
|
|
|
int update(FriendLinkDO friendLink);
|
|
|
|
int remove(Integer id);
|
|
|
|
int batchRemove(Integer[] ids);
|
|
}
|