Package net.risesoft.api
Class QueryListApiImpl
- java.lang.Object
-
- net.risesoft.api.QueryListApiImpl
-
- All Implemented Interfaces:
QueryListApi
@Validated @RestController @RequestMapping(value="/services/rest/queryList", produces="application/json") public class QueryListApiImpl extends Object implements QueryListApi综合查询接口- Author:
- zhangchongjie
- Date:
- 2023/02/06
-
-
Constructor Summary
Constructors Constructor Description QueryListApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Page<ActRuDetailModel>getQueryList(String tenantId, String userId, String systemName, String state, String createDate, String tableName, String searchMapStr, Integer page, Integer rows)综合搜索办件列表
-
-
-
Method Detail
-
getQueryList
public net.risesoft.pojo.Y9Page<ActRuDetailModel> getQueryList(@RequestParam String tenantId, @RequestParam String userId, @RequestParam String systemName, String state, String createDate, String tableName, @RequestBody String searchMapStr, @RequestParam Integer page, @RequestParam Integer rows)
综合搜索办件列表- Specified by:
getQueryListin interfaceQueryListApi- Parameters:
tenantId- 租户iduserId- 岗位idsystemName- 系统名称state- 状态createDate- 开始日期tableName- 表名称searchMapStr- 搜索条件page- 页面rows- 条数- Returns:
Y9Page<ActRuDetailModel>通用分页请求返回对象 - data 是综合查询列表- Since:
- 9.6.6
-
-