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

com.quhaodian.album.data.service.PhotoFeedService Maven / Gradle / Ivy

package com.quhaodian.album.data.service;

import com.quhaodian.album.data.entity.PhotoFeed;
import com.quhaodian.data.page.Filter;
import com.quhaodian.data.page.Order;
import com.quhaodian.data.page.Page;
import com.quhaodian.data.page.Pageable;
import java.util.List;

/**
* Created by imake on 2017年08月15日10:04:55.
*/
public interface PhotoFeedService {

	PhotoFeed findById(Long id);

	PhotoFeed save(PhotoFeed bean);

	PhotoFeed update(PhotoFeed bean);

	PhotoFeed deleteById(Long id);
	
	PhotoFeed[] 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