ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 查询服务信息列表 >author: 吕文 > url::/apn/mtApnService/list ***** > 请求类型:get ***** > 传参方式:body > 传入参数: > | 序号 | 字段名 | 字段中文 | 数据类型 | 是否必填 | 备注 | > | --- | --- | --- | --- | --- | --- | > |1 | maseCode |服务编码 |String | 否 | --- | > |2 | maseName |服务名称 |String | 否| --- | > |3 | pageSize| |String | 是 | --- | > |4 | pageNo| |String | 是 | --- | ***** > 返回参数:records参数 > | 序号 | 字段名 | 字段中文 | 数据类型 | 是否必填 | 备注 | > | --- | --- | --- | --- | --- | --- | > |1 | id|主键 |String | 是 | --- | > |2 | maseCode |服务编码 |String | 是 | --- | > |3 | maseName |服务名称 |String | 是 | --- | > |4 | sysOrgCode|所属部门 |String | 是 | --- | > |5 | maseIsUse| 是否被使用 |String | 是 | --- | > |6 | createBy|创建人 |String | 是 | --- | > |7 | createTime|创建时间 |Date| 是 | --- | > |8 | updateBy|更新人 |String | 是 | --- | > |9 | updateTime|更新时间|Date | 是 | --- | ***** > 接口样例 ``` { "success": true, "message": "操作成功!", "code": 200, "result": { "records": [ { "createBy": "admin", "maseIsUse": 1, "createTime": "2022-03-24 14:15:22", "updateBy": null, "sysOrgCode": "1232", "updateTime": null, "maseCode": "123", "id": "1506877310582382593", "maseName": "123" }, { "createBy": "admin", "maseIsUse": 1, "createTime": "2022-03-24 14:15:23", "updateBy": null, "sysOrgCode": "1232", "updateTime": null, "maseCode": "123", "id": "1506877313765859329", "maseName": "123" } ], "total": 2, "size": 10, "current": 1, "orders": [], "optimizeCountSql": true, "hitCount": false, "countId": null, "maxLimit": null, "searchCount": true, "pages": 1 }, "timestamp": 1648113074841 } ```