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

com.quhaodian.userfriend.data.service.UserFollowService Maven / Gradle / Ivy

The newest version!
package com.quhaodian.userfriend.data.service;

import com.quhaodian.userfriend.data.entity.UserFollow;
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年09月01日10:05:18.
*/
public interface UserFollowService {

	UserFollow findById(Long id);

	UserFollow save(UserFollow bean);

	UserFollow update(UserFollow bean);

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


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


	UserFollow follow(UserFollow bean);

	UserFollow follow(long userid, long followid);

	UserFollow unFollow(UserFollow bean);

	UserFollow unFollow(long userid, long followid);

	UserFollow remove(UserFollow follow);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy