infoBoardDao.go 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. package dao
  2. import (
  3. "fmt"
  4. "gorm.io/gorm"
  5. "iot_manager_service/util/common"
  6. "time"
  7. )
  8. // InfoBoard InfoBoard信息基本屏
  9. type InfoBoard struct {
  10. ID int `gorm:"primary_key" json:"id"` //编号
  11. InfoName string `gorm:"type:varchar(60)" json:"infoName"` //名称
  12. Sn string `gorm:"type:varchar(60)" json:"sn"` //设备序列号
  13. LampPoleId int `gorm:"type:int" json:"lampPoleId"` //所属灯杆id
  14. LampPoleName string `gorm:"type:varchar(64)" json:"lampPoleName"` //灯杆名称
  15. LampPoleSn string `gorm:"type:varchar(64)" json:"lampPoleSn"` //灯杆编码
  16. LampPoleLocation string `gorm:"type:varchar(255)" json:"lampPoleLocation"` //灯杆安装位置
  17. PoleLng float64 `gorm:"type:double(17, 14) " json:"lampLng"` //经度
  18. PoleLat float64 `gorm:"type:double(17, 14) " json:"lampLat"` //纬度
  19. GatewayId int `gorm:"type:int" json:"gatewayId"` //所属网关id
  20. GroupId int `gorm:"type:int" json:"groupId"` //所属灯杆分组
  21. Resolution int `gorm:"type:int" json:"resolution"` //分辨率
  22. BrandId int `gorm:"type:int" json:"brandId"` //设备名
  23. ModelId int `gorm:"type:int" json:"modelId"` //设备型号
  24. InfoSize int `gorm:"type:int" json:"infoSize"` //信息屏尺寸
  25. RatedPower float32 `gorm:"type:float(8, 2); default 0.00" json:"ratedPower"` //额定功率(LED灯)
  26. IPAddress string `gorm:"type:varchar(64)" json:"ipAddress"` //IP地址
  27. BootStartTime string `gorm:"type:varchar(64)" json:"bootStartTime"` //开机开始时间
  28. BootEndTime string `gorm:"type:varchar(64)" json:"bootEndTime"` //开机结束时间
  29. NeverCloseDown int `gorm:"type:int" json:"neverCloseDown"` //永不关机:1-选择,2-取消
  30. InstallTime common.Time `gorm:"type:date" json:"installTime"` //安装时间
  31. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  32. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  33. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  34. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  35. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  36. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  37. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,保留字段(逗号区分)
  38. ExteriorUid int `gorm:"type:bigint" json:"exteriorUid"` //外设ID
  39. IsEnable int `gorm:"type:int; default 2 " json:"isEnable"` //启用禁用:1启用,2禁用
  40. Condition string `gorm:"type:varchar(255);" json:"condition"` //白天晚上 亮度 音量调节
  41. }
  42. func (InfoBoard) TableName() string {
  43. return "device_info_board"
  44. }
  45. func (c InfoBoard) Delete() error {
  46. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  47. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  48. }
  49. func (c InfoBoard) IsExistedBySN() bool {
  50. var count int64
  51. _ = Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  52. c.Sn, c.IsDeleted).Count(&count).Error
  53. return count > 0
  54. }
  55. func (c InfoBoard) IsExistedByNameAndCode() bool {
  56. var devices []InfoBoard
  57. err := Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  58. c.Sn, c.IsDeleted).Find(&devices).Error
  59. //如果查询不到,返回相应的错误
  60. if gorm.ErrRecordNotFound == err {
  61. return false
  62. }
  63. for _, d := range devices {
  64. if d.ID != c.ID {
  65. return true
  66. }
  67. }
  68. return false
  69. }
  70. func (c *InfoBoard) Create() error {
  71. return Db.Debug().Model(&c).Save(&c).Error
  72. }
  73. func (c *InfoBoard) Update() error {
  74. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  75. }
  76. func (c *InfoBoard) GetDevice() (InfoBoard, error) {
  77. var device InfoBoard
  78. err := Db.Debug().Model(&c).Where(" is_deleted = 0 and id = ? ", c.ID).Scan(&device).Error
  79. return device, err
  80. }
  81. func (c InfoBoard) GetDevices(offset, limit int) ([]InfoBoard, int64, error) {
  82. var devices []InfoBoard
  83. var count int64
  84. db := Db.Debug().Model(&c).Where("is_deleted = 0 and (info_name like ? or sn like ?) ", "%"+c.InfoName+"%", "%"+c.InfoName+"%")
  85. db.Count(&count)
  86. err := db.Offset(offset).Limit(limit).Order("info_name asc").Find(&devices).Error
  87. return devices, count, err
  88. }
  89. func (c InfoBoard) GetAllDevices() ([]*InfoBoard, error) {
  90. var devices []*InfoBoard
  91. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = 0 ", c.TenantId).Scan(&devices).Error
  92. return devices, err
  93. }
  94. func (c InfoBoard) GetAllDevicesNotTenant() ([]*InfoBoard, error) {
  95. var devices []*InfoBoard
  96. db := Db.Debug().Model(&c)
  97. if c.ID > 0 {
  98. db.Where("id=?", c.ID)
  99. }
  100. err := db.Where("is_deleted = 0 ").Scan(&devices).Error
  101. return devices, err
  102. }
  103. func (c InfoBoard) GetDevicesByGateway() []InfoBoard {
  104. var devices []InfoBoard
  105. Db.Debug().Model(&c).Where(" gateway_id = ? and is_deleted = 0",
  106. c.GatewayId).Find(&devices)
  107. return devices
  108. }
  109. func (c InfoBoard) GetDevicesByLampPole() []InfoBoard {
  110. var devices []InfoBoard
  111. Db.Debug().Model(&c).Where("lamp_pole_id = ? and is_deleted = 0",
  112. c.LampPoleId).Find(&devices)
  113. return devices
  114. }
  115. func (c InfoBoard) GetDevicesByResolution() []InfoBoard {
  116. var devices []InfoBoard
  117. Db.Debug().Model(&c).Where("resolution = ? and tenant_id = ? and is_deleted = 0",
  118. c.Resolution, c.TenantId).Find(&devices)
  119. return devices
  120. }
  121. func (c InfoBoard) GetDevicesByIds(ids string) []InfoBoard {
  122. var devices []InfoBoard
  123. Db.Debug().Model(&c).Where("id in ("+ids+")"+" and tenant_id = ? and is_deleted = 0",
  124. c.TenantId).Scan(&devices)
  125. fmt.Printf("devices = %v", devices)
  126. return devices
  127. }