infoBoardDao.go 6.8 KB

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