静态IP 订单
POST
/api/v1/static/order/records
Request
Body Params application/json
pageNum
integer | null
required
>= 1
pageSize
integer | null
required
>= 1
staticId
integer | null
required
orderNo
string | null
optional
createTimeStart
string | null
optional
createTimeEnd
string | null
optional
Example
{
"pageNum": 1,
"pageSize": 1,
"staticId": 0,
"orderNo": "string",
"createTimeStart": "string",
"createTimeEnd": "string"
}
Responses
🟢200Success
application/json
Body
msg
string | null
optional
code
integer | null
optional
data
object (PageResponse«StaticIpApiOrderRecordVO»)
optional
total
integer | null
optional
pageSize
integer | null
optional
pageNum
integer | null
optional
table
array[object (StaticIpApiOrderRecordVO) {10}] | null
optional
Example
{
"msg": "",
"code": 0,
"data": {
"total": 0,
"pageSize": 0,
"pageNum": 0,
"table": [
{
"orderNo": "",
"staticId": 0,
"name": "",
"num": 0,
"amount": 0,
"duration": 0,
"status": 0,
"allocated": 0,
"payTime": "",
"createTime": ""
}
]
}
}
Modified at 2025-04-03 12:09:08