1.URL

xxxxxxxxxxxxxxx/system/asset/organization/queryLoginUserOrganizationList
其中xxxxxxxxxxxxxxx为节点URL(详情参考:对接说明中4.服务器节点说明)
(上海节点)http://124.223.60.234:8080/system/asset/organization/queryLoginUserOrganizationList
(美国节点)https://cloud.aovx.com/prod/system/asset/organization/queryLoginUserOrganizationList

2.请求参数

2.1.请求头

在Headers里面增加token:对应登录验证成功后,data里面对应的tokenId

2.2.参数示例

{
    "key":"",
    "pageNum":1,
    "pageSize":20
}

2.3.参数说明

字段 类型 说明 是否必须
key String 公司名称模糊查询Key Y
pageNum int 分页查询当前页码,默认1 Y
pageSize int 分页查询每页显示条数,默认20 Y

3.接口应答

3.1.返回示例

{
    "code": 200,
    "message": "Operation succeeded",
    "data": {
        "total": 2,
        "size": 1,
        "data": [
            {
                "id": "199D9E6F70114AD3A36ACA6A9742B66D",
                "fatherId": "F940B79790004404AAC277418FC71C5E",
                "orgName": "国内客户",
                "fatherName": "云息通信",
                "abbrName": "china",
                "contacts": "Mr.lee",
                "phoneNum": "13400000001",
                "email": "790512672@qq.com",
                "licenseUrl": null,
                "country": "china",
                "address": "阿拉善",
                "timeDiff": 28800,
                "status": 1,
                "descInfo": "云息通信国内客户",
                "createTime": "2023-01-07 00:00:00",
                "creatorId": null,
                "creator": null
            },
            {
                "id": "8F2744CF926044CF8E5B44D2BF7D0BF0",
                "fatherId": "199D9E6F70114AD3A36ACA6A9742B66D",
                "orgName": "亿元通讯",
                "fatherName": "国内客户",
                "abbrName": "yytx",
                "contacts": "Mr.lee",
                "phoneNum": "13400000001",
                "email": "790512672@qq.com",
                "licenseUrl": null,
                "country": "china",
                "address": "阿拉善",
                "timeDiff": 28800,
                "status": 1,
                "descInfo": "云息通信国内客户",
                "createTime": "2023-01-07 00:00:00",
                "creatorId": null,
                "creator": null
            }
        ]
    }
}

3.2.返回结果说明

字段 类型 说明
code int 返回状态
message String 返回结果描述
data object 返回结果体

data说明

字段 类型 说明
total String 总条数
size String 多少页
data object 每页的结果集合

data说明

字段 类型 说明
id String 组织唯一标识
fatherId String 上级组织唯一标识
orgName String 组织名称
fatherName String 上级组织名称
abbrName String 组织简称名称
contacts String 组织联系人
phoneNum String 组织联系电话
email String 组织联系邮箱
licenseUrl String 证件文件URL,支持上传多个,用列表存储并转为JSON字符串
country String 组织所在国家
address String 组织通讯地址
timeDiff String 组织所在国家的时差
status String 组织状态(0:禁用;1:启用)
descInfo String 组织描述
createTime String 组织注册时间
creatorId String 组织注册人唯一标识
creator String 组织注册人

4.请求示例

作者:admin  创建时间:2023-04-24 15:22
最后编辑:admin  更新时间:2025-04-26 15:43