common.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package model
  2. const (
  3. RepeatedPrompts = "编码不能重复,请重新填写!"
  4. GatewayHasRelation = "该网关存在关联设备,请先移除设备!"
  5. RepeatedName = "列表中存在重名,请更改灯杆分组名称!"
  6. ZigbeeSelect = "集中器(ZigBee)选取异常!"
  7. ControlNONull = "编号不能为空!!"
  8. ControlNOInvalid = "编号不符合规则,最小值为1-1,最大值为255-255!"
  9. EnableInvalid = "启用禁用参数错误"
  10. ParamsInvalid = "非法参数!"
  11. TypeInvalid = "非法类型!"
  12. )
  13. const (
  14. ControlType_Default = iota // 灯控
  15. ControlType_NBIoT //NB-IoT
  16. ControlType_485 //485灯控
  17. ControlType_ZigBee //ZigBee
  18. ControlType_ZigBeeHL //ZigBeeHL
  19. )
  20. const (
  21. Enable_Enable = 1 // 启用
  22. Enable_Disable = 2 //停用
  23. )
  24. const (
  25. CameraTypeBall = 1 //球机
  26. CameraTypeGun = 2 //枪机
  27. CameraTypeBallName = "球机"
  28. CameraTypeGunName = "枪机"
  29. )
  30. const (
  31. TypeCapture = "capture"
  32. TypePoint = "point"
  33. )
  34. //redis
  35. const (
  36. AlarmList = "AlarmList_GetList_%s"
  37. LampPoleGroupList = "LampPoleGroupList_GetList_%s"
  38. GroupFiltrationList = "GroupFiltrationList_GetList_%s"
  39. GarbageList = "GarbageList_GetList_%s"
  40. GarbageWayGroupList = "GarbageWayGroupList_GetList_%s"
  41. OnDemandGroupList = "OnDemandGroupList_GetList_%s"
  42. SwitchBoxList = "switchBoxList_GetList_%s"
  43. TransformerList = "TransformerList_GetList_%s"
  44. WisdomGatewayList = "WisdomGatewayList_GetList_%s"
  45. )
  46. type AlarmTerminal struct {
  47. }
  48. type CaptureUnit struct {
  49. }
  50. type Gateway struct {
  51. }
  52. type IpBroadcast struct {
  53. }
  54. type LightControl struct {
  55. }
  56. type Sensor struct {
  57. }
  58. type Zigbee struct {
  59. }
  60. type OptoSensor struct {
  61. }
  62. type Camera struct {
  63. }
  64. type SwitchBox struct {
  65. }
  66. type InfoBoard struct {
  67. }