mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-30 15:08:46 +00:00
35 lines
628 B
Java
35 lines
628 B
Java
package com.java2nb.novel.dao;
|
|
|
|
import com.java2nb.common.annotation.SanitizeMap;
|
|
|
|
import com.java2nb.novel.domain.FriendLinkDO;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
*
|
|
* @author xiongxy
|
|
* @email 1179705413@qq.com
|
|
* @date 2023-04-14 15:12:25
|
|
*/
|
|
@Mapper
|
|
public interface FriendLinkDao {
|
|
|
|
FriendLinkDO get(Integer id);
|
|
|
|
List<FriendLinkDO> list(@SanitizeMap 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);
|
|
}
|