lampPoleDao.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package dao
  2. import (
  3. "github.com/jinzhu/gorm"
  4. "time"
  5. )
  6. //LampPole 灯杆设备
  7. type LampPole struct {
  8. ID int `gorm:"primary_key" json:"id"` //编号
  9. PoleName string `gorm:"type:varchar(64)" json:"poleName"` //灯杆名称
  10. PoleSN string `gorm:"type:varchar(60)" json:"poleSn"` //灯杆唯一识别码
  11. PoleSize float32 `gorm:"type:double(3,1)" json:"poleSize"` //灯杆规格
  12. GroupId int `gorm:"type:int" json:"groupId"` //所属灯杆分组
  13. GatewayId string `gorm:"type:varchar(32)" json:"gatewayId"` //所属网关id
  14. BoxId int `gorm:"type:int" json:"boxId"` //所属配电箱
  15. CoordType int `gorm:"type:int;default 1" json:"coordType"` //经纬度类型0=百度,1=高德,2=腾讯,3=GPS
  16. ProvinceName string `gorm:"type:varchar(60)" json:"provinceName"` //省份
  17. CityName string `gorm:"type:varchar(60)" json:"cityName"` //城市
  18. DistrictName string `gorm:"type:varchar(60)" json:"districtName"` //区域
  19. InstallLocation string `gorm:"type:varchar(100)" json:"installLocation"` //安装位置
  20. PoleLng float64 `gorm:"type:double(17,14)" json:"poleLng"` //经度
  21. PoleLat float64 `gorm:"type:double(17,14)" json:"poleLat"` //纬度
  22. RealLng float64 `gorm:"type:double(17,14)" json:"realLng"` //真实经度
  23. RealLat float64 `gorm:"type:double(17,14)" json:"realLat"` //真实纬度
  24. IsCross int `gorm:"type:int" json:"isCross"` //是否为路口-0-是1-不是
  25. InstallTime time.Time `gorm:"type:date" json:"installTime"` //安装时间
  26. LampPolePhoto string `gorm:"type:varchar(255)" json:"lampPolePhoto"` //灯杆照片
  27. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  28. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  29. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  30. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  31. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  32. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  33. Status int `gorm:"type:int" json:"status"` //状态 0=正常,1=异常
  34. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,(备用,逗号区分)
  35. BridgeId int `gorm:"type:int" json:"bridgeId"` //桥梁ID
  36. }
  37. func (LampPole) TableName() string {
  38. return "t_dev_lamp_pole"
  39. }
  40. func (c *LampPole) Delete() error {
  41. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  42. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  43. }
  44. func (c LampPole) IsExistedBySN() bool {
  45. var count = 0
  46. _ = Db.Debug().Model(&c).Where(" pole_sn = ? and is_deleted = ?",
  47. c.PoleSN, c.IsDeleted).Count(&count).Error
  48. return count > 0
  49. }
  50. func (c LampPole) IsExistedByNameAndCode() bool {
  51. var devices []LampPoleGroup
  52. err := Db.Debug().Model(&c).Where("pole_sn = ? and is_deleted = ?",
  53. c.TenantId, c.IsDeleted).Find(&devices).Error
  54. if gorm.IsRecordNotFoundError(err) {
  55. return false
  56. }
  57. for _, d := range devices {
  58. if d.ID != c.ID {
  59. return true
  60. }
  61. }
  62. return false
  63. }
  64. func (c *LampPole) Create() error {
  65. return Db.Debug().Model(&c).Save(&c).Error
  66. }
  67. func (c *LampPole) Update() error {
  68. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Update(&c).Error
  69. }
  70. func (c *LampPole) GetDevice() error {
  71. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).First(&c).Error
  72. return err
  73. }
  74. func (c LampPole) GetDevices(offset, limit int) ([]LampPole, error) {
  75. var devices []LampPole
  76. db := Db.Debug().Model(&c)
  77. if c.PoleSN != "" {
  78. db = db.Where("pole_name like ? or pole_sn like ?", "%"+c.PoleSN+"%", "%"+c.PoleSN+"%")
  79. }
  80. if c.GroupId != -1 {
  81. db = db.Where("group_id = ?", c.GroupId)
  82. }
  83. if c.BoxId != -1 {
  84. db = db.Where("box_id = ?", c.BoxId)
  85. }
  86. err := db.Where("is_deleted = 0").Offset(offset).Limit(limit).Find(&devices).Error
  87. return devices, err
  88. }
  89. func (c LampPole) GetAllDevices() ([]*LampPole, error) {
  90. var devices []*LampPole
  91. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  92. return devices, err
  93. }
  94. func (c LampPole) Count() int {
  95. var count = 0
  96. _ = Db.Debug().Model(&c).Where(" group_id = ? and is_deleted = ?",
  97. c.GroupId, c.IsDeleted).Count(&count).Error
  98. return count
  99. }