Appearance
功能概述
联合会花名册详情展示模块
接口访问
接口地址
union/member/detail
请求方式 Method
GET
Header - Authorization Type : Bearer Token
| 属性 | 类型 | 长度 | 必填 | 默认值 | 说明 | 访问版本 |
|---|---|---|---|---|---|---|
| token | string | 32 | true | 用户身份标识令牌 | - |
请求参数
| 属性 | 类型 | 长度 | 必填 | 默认值 | 说明 | 访问版本 |
|---|---|---|---|---|---|---|
| userNumber | string | 32 | true | 用户编号 | - |
返回值
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| userNumber | string | true | 会员编号 |
| name | string | true | 会员姓名 |
| headImgUrl | string | true | 会员头像 |
| graduatingClass | string | true | 会员毕业班级 |
| graduationTime | int | true | 会员毕业时间 |
| role | string | true | 会员角色 |
| usersCertificateList | array | true | 会员证件列表 |
| usersCompanyList | array | false | 会员公司列表,非会员不展示 |
usersCertificateList
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| id | int | true | 证件编号 |
| description | string | true | 证件描述 |
| imageUrl | string | true | 证件图片地址 |
usersCompanyList
| 属性 | 类型 | 必填 | 说明 |
|---|---|---|---|
| id | int | true | 公司编号 |
| description | string | true | 公司描述 |
| imageUrl | string | true | 公司图片地址 |
| companyName | string | true | 公司名称 |
| creditCode | string | true | 公司信用代码 |
| logo | string | true | 公司logo |
| establishTime | string | true | 公司成立时间 |
返回示例
{
"response": {
"userNumber": "ZJWL202412130614ae99",
"name": "王杰demo",
"headImgUrl": "新头像",
"graduatingClass": "6",
"graduationTime": 2012,
"role": "DIRECTOR",
"usersCertificateList": [
{
"id": 2,
"description": "编辑表述",
"imageUrl": "地址图片"
},
{
"id": 1,
"description": "描述",
"imageUrl": "图片地址"
}
],
"usersCompanyList": [
{
"id": 1,
"description": "描述",
"imageUrl": "图片地址",
"companyName": "字竞未来(海南)网络科技有限公司",
"creditCode": "",
"logo": "",
"estiblishTime": "2020-12-29"
},
{
"id": 10,
"description": "描述",
"imageUrl": "图片地址",
"companyName": "三两友人(海南)信息科技有限公司",
"creditCode": "91460000MAC77R6A7K",
"logo": "demo",
"estiblishTime": "2023-05-06"
}
]
},
"requestId": "cc434274-c7f7-41f1-af5c-f21e3e28e409"
}