lampPoleDao.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "iot_manager_service/util/common"
  5. "time"
  6. )
  7. // LampPole 灯杆设备
  8. type LampPole struct {
  9. ID int `gorm:"primary_key" json:"id"` //编号
  10. PoleName string `gorm:"type:varchar(64)" json:"poleName"` //灯杆名称
  11. PoleSN string `gorm:"type:varchar(60)" json:"poleSn"` //灯杆唯一识别码
  12. PoleSize float32 `gorm:"type:double(3,1)" json:"poleSize"` //灯杆规格
  13. GroupId int `gorm:"type:int" json:"groupId"` //所属灯杆分组
  14. GatewayId string `gorm:"type:varchar(32)" json:"gatewayId"` //所属网关id
  15. BoxId int `gorm:"type:int" json:"boxId"` //所属配电箱
  16. CoordType int `gorm:"type:int;default 1" json:"coordType"` //经纬度类型0=百度,1=高德,2=腾讯,3=GPS
  17. ProvinceName string `gorm:"type:varchar(60)" json:"provinceName"` //省份
  18. CityName string `gorm:"type:varchar(60)" json:"cityName"` //城市
  19. DistrictName string `gorm:"type:varchar(60)" json:"districtName"` //区域
  20. InstallLocation string `gorm:"type:varchar(100)" json:"installLocation"` //安装位置
  21. PoleLng float64 `gorm:"type:double(17,14)" json:"poleLng"` //经度
  22. PoleLat float64 `gorm:"type:double(17,14)" json:"poleLat"` //纬度
  23. RealLng float64 `gorm:"type:double(17,14)" json:"realLng"` //真实经度
  24. RealLat float64 `gorm:"type:double(17,14)" json:"realLat"` //真实纬度
  25. IsCross int `gorm:"type:int" json:"isCross"` //是否为路口-0-是1-不是
  26. InstallTime common.Time `gorm:"type:date" json:"installTime"` //安装时间
  27. LampPolePhoto string `gorm:"type:varchar(255)" json:"lampPolePhoto"` //灯杆照片
  28. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  29. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  30. CreateUser int `gorm:"type:int" json:"createUser"` //新增记录操作用户ID
  31. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  32. UpdateUser int `gorm:"type:int" json:"updateUser"` //修改用户
  33. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  34. Status int `gorm:"type:int" json:"status"` //状态 0=正常,1=异常
  35. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,(备用,逗号区分)
  36. BridgeId int `gorm:"type:int" json:"bridgeId"` //桥梁ID
  37. }
  38. func (LampPole) TableName() string {
  39. return "device_lamp_pole"
  40. }
  41. func (c *LampPole) Delete() error {
  42. return Db.Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  43. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  44. }
  45. func (c LampPole) IsExistedBySN() bool {
  46. var count int64
  47. _ = Db.Model(&c).Where(" pole_sn = ? and is_deleted = ?",
  48. c.PoleSN, c.IsDeleted).Count(&count).Error
  49. return count > 0
  50. }
  51. func (c LampPole) IsExistedByNameAndCode() bool {
  52. var devices []LampPoleGroup
  53. err := Db.Model(&c).Where("pole_sn = ? and is_deleted = ?",
  54. c.TenantId, c.IsDeleted).Find(&devices).Error
  55. if gorm.ErrRecordNotFound == err {
  56. return false
  57. }
  58. for _, d := range devices {
  59. if d.ID != c.ID {
  60. return true
  61. }
  62. }
  63. return false
  64. }
  65. func (c *LampPole) Create() error {
  66. return Db.Model(&c).Save(&c).Error
  67. }
  68. func (c *LampPole) Update() error {
  69. return Db.Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  70. }
  71. func (c *LampPole) GetDevice() error {
  72. err := Db.Model(&c).Where(" id = ? ", c.ID).First(&c).Error
  73. return err
  74. }
  75. func (c LampPole) GetDevices(offset, limit int) ([]LampPole, int64, error) {
  76. var devices []LampPole
  77. var count int64
  78. db := Db.Model(&c)
  79. if c.PoleSN != "" {
  80. db = db.Where("pole_name like ? or pole_sn like ?", "%"+c.PoleSN+"%", "%"+c.PoleSN+"%")
  81. }
  82. if c.GroupId != -1 {
  83. db = db.Where("group_id = ?", c.GroupId)
  84. }
  85. if c.BoxId != -1 {
  86. db = db.Where("box_id = ?", c.BoxId)
  87. }
  88. db = db.Where("is_deleted = 0")
  89. db.Count(&count)
  90. err := db.Offset(offset).Limit(limit).Find(&devices).Error
  91. return devices, count, err
  92. }
  93. func (c LampPole) GetAllDevices() ([]*LampPole, error) {
  94. var devices []*LampPole
  95. err := Db.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  96. return devices, err
  97. }
  98. func (c LampPole) Count() int64 {
  99. var count int64
  100. _ = Db.Model(&c).Where(" group_id = ? and is_deleted = ?",
  101. c.GroupId, c.IsDeleted).Count(&count).Error
  102. return count
  103. }
  104. // GetSwitchBoxCount 得到 配电箱 关联灯杆数 2022-12-08 dsx
  105. func (c LampPole) GetSwitchBoxCount() (int64, error) {
  106. var count int64
  107. err := Db.Model(&c).Where("(box_id = ?) and is_deleted = 0",
  108. c.BoxId).Count(&count).Error
  109. return count, err
  110. }
  111. // GetGroupIdCount 得到 灯杆分组 关联灯杆数 2022-12-09 dsx
  112. func (c LampPole) GetGroupIdCount() (int, error) {
  113. var count int64
  114. err := Db.Model(&c).Where("(group_id = ?) and is_deleted = 0",
  115. c.GroupId).Count(&count).Error
  116. return int(count), err
  117. }
  118. // CountAll SELECT COUNT(id) AS countNum FROM `device_lamp_pole` WHERE `is_deleted` = 0;
  119. func (c LampPole) CountAll() (int64, error) {
  120. var i int64
  121. err := Db.Table("device_lamp_pole").Where("is_deleted = 0").Count(&i).Error
  122. return i, err
  123. }
  124. // CountFault SELECT COUNT(id) AS faultNum FROM `device_lamp_pole` WHERE `is_deleted` = 0 AND `status` = -1;
  125. func (c LampPole) CountFault() (int64, error) {
  126. var i int64
  127. err := Db.Model(&c).Where(map[string]interface{}{"is_deleted": 0, "status": 0}).Count(&i).Error
  128. return i, err
  129. }
  130. func (c LampPole) ListDevices1() []Device {
  131. var devices []LampPole
  132. Db.Model(&c).Where("is_deleted = 0").Find(&devices)
  133. var rsp = make([]Device, 0, len(devices))
  134. for _, v := range devices {
  135. var d = Device{
  136. Lng: v.PoleLng,
  137. Lat: v.PoleLat,
  138. Status: v.Status,
  139. Name: v.PoleName,
  140. Code: v.PoleSN,
  141. LampPoleName: v.PoleName,
  142. Model: "型号",
  143. LinkNum: getLinkNum(v.PoleSN),
  144. }
  145. rsp = append(rsp, d)
  146. }
  147. return rsp
  148. }
  149. func (c LampPole) DeviceCount1() (int64, int64) {
  150. var all, fault int64
  151. err := Db.Model(&c).Where("is_deleted = 0").Count(&all).Error
  152. if err != nil {
  153. all = -1
  154. }
  155. err = Db.Model(&c).Where("is_deleted = 0 and status = 0").Count(&fault).Error
  156. if err != nil {
  157. fault = -1
  158. }
  159. return all, fault
  160. }