静态IP 列表
POST
/api/v1/static/ip/list
Request
Body Params application/json
pageNum
integer | null
required
>= 1
pageSize
integer | null
required
>= 1
staticId
integer | null
required
orderNo
string | null
optional
ip
string | null
optional
remark
string | null
optional
status
integer | null
optional
Example
{
"pageNum": 1,
"pageSize": 1,
"staticId": 0,
"orderNo": "string",
"ip": "string",
"remark": "string",
"status": 0
}
Responses
🟢200Success
application/json
Body
msg
string | null
optional
code
integer | null
optional
data
object (PageResponse«StaticIpApiVO»)
optional
total
integer | null
optional
pageSize
integer | null
optional
pageNum
integer | null
optional
table
array[object (StaticIpApiVO) {16}] | null
optional
Example
{
"msg": "",
"code": 0,
"data": {
"total": 0,
"pageSize": 0,
"pageNum": 0,
"table": [
{
"id": 0,
"orderNo": "",
"staticId": 0,
"host": "",
"port": "",
"ip": "",
"regionId": 0,
"region": "",
"remainingDay": 0,
"status": 0,
"user": "",
"password": "",
"buyTime": "",
"expireTime": "",
"remark": "",
"renewDuration": 0
}
]
}
}
Modified at 2025-04-03 12:09:08