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

com.quhaodian.user.data.service.UserLabelService Maven / Gradle / Ivy

There is a newer version: 1.8.7
Show newest version
package com.quhaodian.user.data.service;

import com.quhaodian.user.data.entity.UserLabel;
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年12月06日15:59:13.
*/
public interface UserLabelService {

	UserLabel findById(Long id);

	UserLabel save(UserLabel bean);

	UserLabel update(UserLabel bean);

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


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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy