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

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

package com.quhaodian.album.data.service;

import com.quhaodian.album.data.entity.Photo;
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 PhotoService {

	Photo findById(String id);

	Photo save(Photo bean);

	Photo update(Photo bean);

	Photo deleteById(String id);
	
	Photo[] deleteByIds(String[] 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