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

com.quhaodian.data.core.DataProvider Maven / Gradle / Ivy

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

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.io.Serializable;
import java.util.List;

/**
 * Created by cng19 on 2016/10/23.
 */
public interface DataProvider {

  Page page(Pageable pageable);

  List list(Integer first, Integer count, List filters, List orders);

  T add(T t);

  T delete(T t);

  T update(T t);


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy