Files
admin 2d8c1ea8f9 chore: 批量新增各类工具脚本与配置文件
1. 新增音频录制、下载、上传相关脚本
2. 新增数据库操作、API调用工具
3. 新增Excel数据处理脚本
4. 新增弱密码检测脚本
2026-06-14 17:47:15 +08:00

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)