123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- data = {
- 'enable': True,
- 'config': {
- # --- 用户配置 ---
- 'Role&User': [
- {
- 'role_info': {
- 'role_type': 1,
- 'role_name': '超级管理员',
- 'switch_list': [
- 'admin'
- ],
- },
- 'users_info': [
- {
- 'username': 'admin',
- 'password': '123456',
- }
- ],
- },
- ],
- # --- 车辆配置 ---
- 'VehicleInfo': [
- {'name': '3号车', 'address': '192.168.131.180'},
- {'name': '5号车', 'address': '192.168.131.xxx'},
- ],
- # --- 倒渣口坐标数据 ---
- # 'aaa': [
- # {'name': '3号车', 'address': '192.168.131.180'},
- # {'name': '5号车', 'address': '192.168.131.xxx'},
- # ],
- # --- 渣包坐标数据 ---
- # 'bbb': [
- # {'name': '3号车', 'address': '192.168.131.180'},
- # {'name': '5号车', 'address': '192.168.131.xxx'},
- # ],
- # --- 转弯圆心点坐标数据 ---
- # 'ccc': [
- # {'name': '3号车', 'address': '192.168.131.180'},
- # {'name': '5号车', 'address': '192.168.131.xxx'},
- # ],
- # --- 全局配置 ---
- 'GlobalVariable': {
- 'CameraConfig': {
- # 海康 人脸摄像机 中建八局 第4现场 奥东项目
- # 'camera_rtsp': 'rtsp://admin:DEVdev123@192.168.1.64:554/h264/ch1/main/av_stream',
- # 'camera_ipv4': '192.168.1.64',
- # 'camera_user': 'admin',
- # 'camera_pass': 'DEVdev123',
- }
- }
- }
- }
|