garbageDao.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package dao
  2. import (
  3. "gorm.io/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 string `gorm:"type:varchar(12)" json:"tenantId"` //租户id
  33. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  34. CreateUser int `gorm:"type:int" json:"createUser"` //新增记录操作用户ID
  35. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  36. UpdateUser int `gorm:"type:int" 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.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 int64
  49. _ = Db.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.Model(&c).Where(" device_sn = ? and is_deleted = ?",
  56. c.DeviceSN, c.IsDeleted).Find(&devices).Error
  57. //如果查询不到,返回相应的错误
  58. if gorm.ErrRecordNotFound == 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.Model(&c).Save(&c).Error
  70. }
  71. func (c *Garbage) Update() error {
  72. return Db.Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  73. }
  74. func (c *Garbage) GetDevice() error {
  75. err := Db.Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  76. return err
  77. }
  78. func (c Garbage) GetDevices(offset, limit int) ([]Garbage, int64, error) {
  79. var devices []Garbage
  80. var count int64
  81. db := Db.Model(&c).Where(" device_name like ? and is_deleted = 0", "%"+c.DeviceName+"%")
  82. db.Count(&count)
  83. err := db.Offset(offset).Limit(limit).Find(&devices).Error
  84. return devices, count, err
  85. }
  86. func (c Garbage) GetAllDevices() ([]*Garbage, error) {
  87. var devices []*Garbage
  88. err := Db.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  89. return devices, err
  90. }
  91. func (c Garbage) GetAll() []*Garbage {
  92. var devices []*Garbage
  93. Db.Model(&c).Where("is_deleted = 0 ").Scan(&devices)
  94. return devices
  95. }