文档中心 > API类目 > 司法开放平台

alibaba.legal.standpoint.standpoint.queryall (滑动查询口径)

滑动查询口径

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
input_system_code String 可选 Vmock 系统标识
query_param QueryParam 可选 滑动查询参数
  • └ roll_flag
  • String
  • 可选
  • up
  • 滑动标识(up:上滑 down:下滑)
  • └ busi_id
  • String
  • 可选
  • 0
  • 业务id
  • └ scene_id
  • Number
  • 可选
  • 156
  • 场景id
  • └ standpoint_id
  • Number
  • 可选
  • 15194
  • 口径id
  • └ keyword
  • String
  • 可选
  • 测试
  • 关键字
  • └ operate_work_no
  • String
  • 可选
  • 000000
  • 操作人工号
  • └ input_system_code
  • String
  • 可选
  • Vmock
  • 系统标识

响应参数

名称 类型 示例值 描述
success_res Boolean false 是否成功
error_code_res Number 0 错误编码
content StandpointOutPutDto [] 口径
  • └ scenes_struct
  • String
  • 场景结构
  • 场景结构
  • └ table_str
  • String []
  • 表格
  • └ scenes_id
  • Number
  • 0
  • 场景id
  • └ is_collection
  • Boolean
  • false
  • 是否收藏
  • └ derive_count
  • Number
  • 0
  • 衍生数量
  • └ label
  • String
  • 标签
  • 标签
  • └ gmt_create
  • String
  • 2023-05-23 14:02:21
  • 创建时间
  • └ table_schema
  • String
  • 表格
  • 表格
  • └ defense_caliber
  • String
  • 口径
  • 口径
  • └ standpoint_desc
  • String
  • 口径描述
  • 口径描述
  • └ standpoint_labels
  • String []
  • 口径标签
  • options
  • Options []
  • 拓展字段
  • └ code
  • String
  • 标识
  • 标识
  • └ title
  • String
  • 标题
  • 标题
  • └ type
  • String
  • String
  • 类型(String/File)
  • └ value
  • String
  • file_values
  • FileValues []
  • 文件
  • └ file_name
  • String
  • 名称
  • 名称
  • └ preview_url
  • String
  • 预览地址
  • 预览地址
  • └ download_url
  • String
  • 下载地址
  • 下载地址
  • └ file_type
  • String
  • 文件类型
  • 文件类型
  • └ file_id
  • Number
  • 0
  • 文件id
  • └ scenes_name
  • String
  • 场景名称
  • 场景名称
  • └ referenced_count
  • Number
  • 0
  • 引用数量
  • └ id
  • Number
  • 0
  • 口径id
  • └ creater_worker_no
  • String
  • 000000
  • 创建人工号
error_msg String 系统错误 错误描述

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLegalStandpointStandpointQueryallRequest req = new AlibabaLegalStandpointStandpointQueryallRequest();
req.setInputSystemCode("Vmock");
AlibabaLegalStandpointStandpointQueryallRequest.QueryParam obj1 = new AlibabaLegalStandpointStandpointQueryallRequest.QueryParam();
obj1.setRollFlag("up");
obj1.setBusiId("0");
obj1.setSceneId(156L);
obj1.setStandpointId(15194L);
obj1.setKeyword("测试");
obj1.setOperateWorkNo("000000");
obj1.setInputSystemCode("Vmock");
req.setQueryParam(obj1);
AlibabaLegalStandpointStandpointQueryallResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_legal_standpoint_standpoint_queryall_response>
    <success_res>false</success_res>
    <error_code_res>0</error_code_res>
    <content>
        <standpoint_out_put_dto>
            <scenes_struct>场景结构</scenes_struct>
            <scenes_id>0</scenes_id>
            <is_collection>false</is_collection>
            <derive_count>0</derive_count>
            <label>标签</label>
            <gmt_create>2023-05-23 14:02:21</gmt_create>
            <table_schema>表格</table_schema>
            <defense_caliber>口径</defense_caliber>
            <standpoint_desc>口径描述</standpoint_desc>
            <options>
                <options>
                    <code>标识</code>
                    <title>标题</title>
                    <type>String</type>
                    <value>值</value>
                    <file_values>
                        <file_values>
                            <file_name>名称</file_name>
                            <preview_url>预览地址</preview_url>
                            <download_url>下载地址</download_url>
                            <file_type>文件类型</file_type>
                            <file_id>0</file_id>
                        </file_values>
                    </file_values>
                </options>
            </options>
            <scenes_name>场景名称</scenes_name>
            <referenced_count>0</referenced_count>
            <id>0</id>
            <creater_worker_no>000000</creater_worker_no>
        </standpoint_out_put_dto>
    </content>
    <error_msg>系统错误</error_msg>
</alibaba_legal_standpoint_standpoint_queryall_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部