mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-01 07:16:39 +00:00
33 lines
578 B
Java
33 lines
578 B
Java
package com.java2nb.novel.dao;
|
|
|
|
import com.java2nb.novel.domain.WebsiteInfoDO;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
/**
|
|
* 网站信息表
|
|
* @author xiongxy
|
|
* @email 1179705413@qq.com
|
|
* @date 2023-04-14 11:05:43
|
|
*/
|
|
@Mapper
|
|
public interface WebsiteInfoDao {
|
|
|
|
WebsiteInfoDO get(Long id);
|
|
|
|
List<WebsiteInfoDO> list(Map<String,Object> map);
|
|
|
|
int count(Map<String,Object> map);
|
|
|
|
int save(WebsiteInfoDO websiteInfo);
|
|
|
|
int update(WebsiteInfoDO websiteInfo);
|
|
|
|
int remove(Long id);
|
|
|
|
int batchRemove(Long[] ids);
|
|
}
|