garbageDao.go 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package dao
  2. import (
  3. "github.com/jinzhu/gorm"
  4. "time"
  5. )
  6. // Garbage 垃圾桶道路分组管理
  7. type Garbage struct {
  8. ID int `gorm:"primary_key" json:"id"` //编号
  9. DeviceName string `gorm:"type:varchar(64)" json:"deviceName"` //垃圾桶名称
  10. DeviceSN string `gorm:"type:varchar(60)" json:"deviceSn"` //垃圾桶序列号
  11. DeviceIMei string `gorm:"type:varchar(64)" json:"deviceIMei"` //传感器编码-唯一不允许重复
  12. KindType int `gorm:"type:int" json:"kindType"` //种类
  13. Material int `gorm:"type:int" json:"material"` //材质
  14. BrandId int `gorm:"type:int" json:"brandId"` //品牌
  15. ModelId int `gorm:"type:int" json:"modelId"` //型号
  16. GarbageOneType int `gorm:"type:int" json:"garbageOneType"` //桶1类型
  17. GarbageTwoType int `gorm:"type:int" json:"garbageTwoType"` //桶2类型
  18. GarbageHeight int `gorm:"type:int" json:"garbageHeight"` //内桶高度
  19. TotalHeight int `gorm:"type:int" json:"totalHeight"` //传感器距离内桶高度
  20. InstallTime time.Time `gorm:"type:date" json:"installTime"` //安装时间
  21. WayID int `gorm:"type:int" json:"wayId"` //所属道路号
  22. CameraID int `gorm:"type:int" json:"cameraId"` //摄像机id
  23. CameraSN string `gorm:"type:varchar(60)" json:"cameraSn"` //摄像机sn
  24. PoleLng float64 `gorm:"type:double(17, 14)" json:"poleLng"` //经度
  25. PoleLat float64 `gorm:"type:double(17, 14)" json:"poleLat"` //纬度
  26. ProvinceName string `gorm:"type:varchar(60)" json:"provinceName"` //省份
  27. CityName string `gorm:"type:varchar(60)" json:"cityName"` //市
  28. DistrictName string `gorm:"type:varchar(60)" json:"districtName"` //区
  29. InstallLocation string `gorm:"type:varchar(100)" json:"installLocation"` //安装位置
  30. PhotoUrl string `gorm:"type:varchar(255)" json:"photoUrl"` //供电箱照片地址
  31. Remark string `gorm:"type:varchar(1000)" json:"remark"` //备注
  32. TenantId int `gorm:"type:int" json:"tenantId"` //租户id
  33. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  34. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  35. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  36. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  37. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  38. Threshold int `gorm:"type:int" json:"threshold"` //阈值设定:告警百分比%
  39. }
  40. func (Garbage) TableName() string {
  41. return "device_garbage"
  42. }
  43. func (c Garbage) Delete() error {
  44. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  45. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  46. }
  47. func (c Garbage) IsExistedBySN() bool {
  48. var count = 0
  49. _ = Db.Debug().Model(&c).Where(" device_sn = ? and is_deleted = ?",
  50. c.DeviceSN, c.IsDeleted).Count(&count).Error
  51. return count > 0
  52. }
  53. func (c Garbage) IsExistedByNameAndCode() bool {
  54. var devices []Garbage
  55. err := Db.Debug().Model(&c).Where(" device_sn = ? and is_deleted = ?",
  56. c.DeviceSN, c.IsDeleted).Find(&devices).Error
  57. //如果查询不到,返回相应的错误
  58. if gorm.IsRecordNotFoundError(err) {
  59. return false
  60. }
  61. for _, d := range devices {
  62. if d.ID != c.ID {
  63. return true
  64. }
  65. }
  66. return false
  67. }
  68. func (c *Garbage) Create() error {
  69. return Db.Debug().Model(&c).Save(&c).Error
  70. }
  71. func (c *Garbage) Update() error {
  72. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Update(&c).Error
  73. }
  74. func (c *Garbage) GetDevice() error {
  75. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  76. return err
  77. }
  78. func (c Garbage) GetDevices(offset, limit int) ([]Garbage, error) {
  79. var devices []Garbage
  80. err := Db.Debug().Model(&c).Where(" device_name like ? and is_deleted = 0", "%"+c.DeviceName+"%").Offset(offset).Limit(limit).Find(&devices).Error
  81. return devices, err
  82. }
  83. func (c Garbage) GetAllDevices() ([]*Garbage, error) {
  84. var devices []*Garbage
  85. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  86. return devices, err
  87. }