gatewayRelationDao.go 1.5 KB

123456789101112131415161718192021222324252627282930
  1. package dao
  2. import (
  3. "time"
  4. )
  5. //GatewayRelation 网关挂载设备关联信息表
  6. type GatewayRelation struct {
  7. ID int `gorm:"type:int;primary_key"` //编号 网关ID
  8. LightControlCount int `gorm:"type:int;default 0"` //灯控数量
  9. InfoBoardCount int `gorm:"type:int;default 0"` //信息屏数量
  10. OptoSensorCount int `gorm:"type:int;default 0"` //环境传感器数量
  11. ZigbeeCount int `gorm:"type:int;default 0"` //Zigbee设备数量
  12. AlarmTerminalCount int `gorm:"type:int;default 0"` //告警终端数量
  13. CaptureUnitCount int `gorm:"type:int;default 0"` //抓拍单元数量
  14. IpBroadcastCount int `gorm:"type:int;default 0"` //IP音柱数量
  15. Total int `gorm:"type:int;default 0"` //总数
  16. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  17. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  18. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  19. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删
  20. }
  21. func (GatewayRelation) TableName() string {
  22. return "t_dev_gateway_relation"
  23. }
  24. func (c *GatewayRelation) Get() error {
  25. return Db.Debug().Model(&c).Where("id = ?", c.ID).Find(&c).Error
  26. }