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

com.haoxuer.discover.plug.data.service.SystemPaymentService Maven / Gradle / Ivy

package com.haoxuer.discover.plug.data.service;

import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Pageable;
import com.haoxuer.discover.plug.data.entity.SystemPayment;

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