config.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. // 数据库配置
  3. "db_config": {
  4. //数据库IP地址
  5. "db_ip": "127.0.0.1",
  6. // 端口号
  7. "db_port": 3306,
  8. // 数据库名
  9. "db_name": "xm_project",
  10. // 用户名
  11. "db_user": "zx",
  12. // 用户密码
  13. "db_password": "123456"
  14. },
  15. // rabbitmq配置
  16. "mq_config": {
  17. // rabbitmq服务器ip地址
  18. "mq_ip": "127.0.0.1",
  19. // 端口
  20. "mq_port": "5672",
  21. // 用户名
  22. "mq_user": "zx",
  23. // 用户密码
  24. "mq_password": "123456",
  25. //态交换机需要订阅的端口列表 厦门的
  26. "mq_statu_exchange_keys": [["statu_ex","dispatch_11_statu_port"],
  27. ["statu_ex","dispatch_12_statu_port"],
  28. ["statu_ex","dispatch_13_statu_port"],
  29. ["statu_ex","dispatch_14_statu_port"],
  30. ["statu_ex","dispatch_21_statu_port"],
  31. ["statu_ex","dispatch_22_statu_port"],
  32. ["statu_ex","dispatch_23_statu_port"],
  33. ["statu_ex","dispatch_24_statu_port"],
  34. ["statu_ex","dispatch_25_statu_port"],
  35. ["statu_ex","dispatch_31_statu_port"],
  36. ["statu_ex","dispatch_32_statu_port"]]
  37. },
  38. // 车库配置
  39. "parking_config":{
  40. //窗口名称
  41. // "window_title" : "贵阳碧海花园万寿竹路智能立体停车库 车位管理系统-V1.0",
  42. "window_title" : "厦门上古街智能立体停车库 车位管理系统-V1.0",
  43. // 车高分级 三级分别限高多少
  44. "grade1" : 1.48,
  45. "grade2" : 1.50,
  46. "grade3" : 2.05,
  47. //行(厦门14行,贵阳10)
  48. "row" : 14,
  49. //列(厦门6列,贵阳12)
  50. "column" : 6,
  51. //单元号 贵阳项目1-2, 楚天项目1-3,厦门项目11-32
  52. "unit" : 12,
  53. //层高显示减值
  54. "floor_minus" : 2,
  55. //密码
  56. "passwd" : "123456"
  57. }
  58. }