接口 QueryListApi


  • public interface QueryListApi
    综合查询
    作者:
    zhangchongjie
    Date:
    2023/09/07
    • 方法详细资料

      • getQueryList

        @PostMapping("/getQueryList")
        net.risesoft.pojo.Y9Page<ActRuDetailModel> getQueryList​(@RequestParam("tenantId")
                                                                String tenantId,
                                                                @RequestParam("userId")
                                                                String userId,
                                                                @RequestParam("systemName")
                                                                String systemName,
                                                                @RequestParam(value="state",required=false)
                                                                String state,
                                                                @RequestParam(value="createDate",required=false)
                                                                String createDate,
                                                                @RequestParam(value="tableName",required=false)
                                                                String tableName,
                                                                @RequestBody
                                                                String searchMapStr,
                                                                @RequestParam("page")
                                                                Integer page,
                                                                @RequestParam("rows")
                                                                Integer rows)
        综合搜索
        参数:
        tenantId - 租户id
        userId - 岗位id
        systemName - 系统名称
        state - 状态
        createDate - 开始日期
        tableName - 表名称
        searchMapStr - 搜索条件
        page - 页面
        rows - 条数
        返回:
        Y9Page<ActRuDetailModel> 通用分页请求返回对象 - data 是综合查询列表
        从以下版本开始:
        9.6.6