package com.oying.modules.maint.service;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.oying.modules.maint.domain.dto.AppQueryCriteria;
|
import com.oying.modules.maint.domain.App;
|
import com.oying.utils.PageResult;
|
|
import javax.servlet.http.HttpServletResponse;
|
import java.io.IOException;
|
import java.util.List;
|
import java.util.Set;
|
|
/**
|
* @author Z
|
* @date 2019-08-24
|
*/
|
public interface AppService extends IService<App> {
|
|
/**
|
* 分页查询
|
* @param criteria 条件
|
* @param page 分页参数
|
* @return /
|
*/
|
PageResult<App> queryAll(AppQueryCriteria criteria, Page<Object> page);
|
|
/**
|
* 查询全部数据
|
*
|
* @param criteria 条件
|
* @return /
|
*/
|
List<App> queryAll(AppQueryCriteria criteria);
|
|
/**
|
* 创建
|
* @param resources /
|
*/
|
void create(App resources);
|
|
/**
|
* 编辑
|
* @param resources /
|
*/
|
void update(App resources);
|
|
/**
|
* 删除
|
* @param ids /
|
*/
|
void delete(Set<Long> ids);
|
|
/**
|
* 导出数据
|
* @param apps /
|
* @param response /
|
* @throws IOException /
|
*/
|
void download(List<App> apps, HttpServletResponse response) throws IOException;
|
}
|