17 lines
429 B
Python
17 lines
429 B
Python
from requests import post
|
|
tem = post("http://11.1.1.106:8082/api",json={
|
|
"service_name": "operate_plate",
|
|
"data": [
|
|
{
|
|
"departName": "百仁",
|
|
"authType": 30000,
|
|
"plateNumber": "鄂A1234569",
|
|
"personName": "夏天乐测试",
|
|
"plateIdStr": "test-plate-id-001",
|
|
"opType": 1,
|
|
"beginTime": "2026-05-18 17:53:44",
|
|
"endTime": "2027-05-18 17:53:44"
|
|
}
|
|
]
|
|
}).text
|
|
print(tem) |