123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package model
- const (
- RepeatedPrompts = "编码不能重复,请重新填写!"
- GatewayHasRelation = "该网关存在关联设备,请先移除设备!"
- RepeatedName = "列表中存在重名,请更改灯杆分组名称!"
- ZigbeeSelect = "集中器(ZigBee)选取异常!"
- ControlNONull = "编号不能为空!!"
- ControlNOInvalid = "编号不符合规则,最小值为1-1,最大值为255-255!"
- EnableInvalid = "启用禁用参数错误"
- ParamsInvalid = "非法参数!"
- TypeInvalid = "非法类型!"
- )
- const (
- ControlType_Default = iota // 灯控
- ControlType_NBIoT //NB-IoT
- ControlType_485 //485灯控
- ControlType_ZigBee //ZigBee
- ControlType_ZigBeeHL //ZigBeeHL
- )
- const (
- Enable_Enable = 1 // 启用
- Enable_Disable = 2 //停用
- )
- const (
- CameraTypeBall = 1 //球机
- CameraTypeGun = 2 //枪机
- CameraTypeBallName = "球机"
- CameraTypeGunName = "枪机"
- )
- const (
- TypeCapture = "capture"
- TypePoint = "point"
- )
- //redis
- const (
- AlarmList = "AlarmList_GetList_%s"
- LampPoleGroupList = "LampPoleGroupList_GetList_%s"
- GroupFiltrationList = "GroupFiltrationList_GetList_%s"
- GarbageList = "GarbageList_GetList_%s"
- GarbageWayGroupList = "GarbageWayGroupList_GetList_%s"
- OnDemandGroupList = "OnDemandGroupList_GetList_%s"
- SwitchBoxList = "switchBoxList_GetList_%s"
- TransformerList = "TransformerList_GetList_%s"
- WisdomGatewayList = "WisdomGatewayList_GetList_%s"
- )
- type AlarmTerminal struct {
- }
- type CaptureUnit struct {
- }
- type Gateway struct {
- }
- type IpBroadcast struct {
- }
- type LightControl struct {
- }
- type Sensor struct {
- }
- type Zigbee struct {
- }
- type OptoSensor struct {
- }
- type Camera struct {
- }
- type SwitchBox struct {
- }
- type InfoBoard struct {
- }
|