All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.haoxuer.discover.weibo.data.service.TopicChannelService Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.weibo.data.service;

import com.haoxuer.discover.weibo.data.entity.TopicChannel;
import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Pageable;
import java.util.List;

/**
* Created by imake on 2018年12月19日11:43:37.
*/
public interface TopicChannelService {

	TopicChannel findById(Long id);

	TopicChannel save(TopicChannel bean);

	TopicChannel update(TopicChannel bean);

	TopicChannel deleteById(Long id);
	
	TopicChannel[] deleteByIds(Long[] ids);
	
	Page page(Pageable pageable);
	
	Page page(Pageable pageable, Object search);


	List list(int first, Integer size, List filters, List orders);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy