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

org.iartisan.runtime.support.IBaseQueryService Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.iartisan.runtime.support;

import org.iartisan.runtime.bean.Page;
import org.iartisan.runtime.bean.PageWrapper;

import java.io.Serializable;
import java.util.List;

/**
 * 

* 通用服务 * * @author King * @since 2017/6/22 */ public interface IBaseQueryService extends IBaseService { PageWrapper getAllPageData(Page page); List getAllData(); List getListDataByObjs(T t); PageWrapper getPageData(Page page, T t); T getDataById(Serializable id); T getDataByObjs(T t); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy