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

com.quhaodian.plug.data.service.SystemPaymentService Maven / Gradle / Ivy

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

import com.quhaodian.plug.data.entity.SystemPayment;
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日11:13:49.
*/
public interface SystemPaymentService {

	SystemPayment findById(Long id);

	SystemPayment save(SystemPayment bean);

	SystemPayment update(SystemPayment bean);

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