文档
测试

- 手机号开通统计

GET
/business/api/phone/poly

请求头

参数名
类型
描述
必填
Authorization
string
Bearer xxx
必填

响应参数

参数名
类型
描述
必填
code
number
示例:0
必填
msg
string
示例:操作成功
必填
data
object
数据字典
必填
opened
number
已开通数量
必填
unOpened
number
未开通数量
必填
acquire
number
占用数量
必填

说明 / 示例

```http GET /business/api/phone/poly HTTP/1.1 Host: localhost:9999 Authorization: Bearer 5607a637-ad73-42f9-863d-b4527a76fecd ``` ```json { "code": 0, "msg": "操作成功", "data": { "opened": 10, "unOpened": 0, "acquire": 0 } } ```