manholeCoverDao.go 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "time"
  5. )
  6. // ManholeCover 井盖基本信息
  7. type ManholeCover struct {
  8. ID int `gorm:"primary_key" json:"id"` //编号
  9. ManholeName string `gorm:"type:varchar(64)" json:"manholeName"` //设备名称
  10. ManholeSn string `gorm:"type:varchar(60)" json:"manholeSn"` //设备序列号
  11. DeviceIMei string `gorm:"type:varchar(64)" json:"deviceIMei"` //IMEI-唯一不允许重复
  12. BrandId int `gorm:"type:int" json:"brandID"` //设备名称
  13. ModelId int `gorm:"type:int" json:"modelID"` //设备型号
  14. KindType int `gorm:"type:int" json:"transPhotoUrl"` //种类
  15. Radius int `gorm:"type:int" json:"radius"` //半径
  16. MaterialQuality int `gorm:"type:int" json:"materialQuality"` //材质
  17. InstallLocationType int `gorm:"type:int" json:"installLocationType"` //安装位置类型
  18. WayName string `gorm:"type:varchar(60)" json:"wayName"` //所属道路
  19. InstallTime *time.Time `gorm:"type:date" json:"installTime"` //安装时间
  20. ProvinceName string `gorm:"varchar(12)" json:"provinceName"` //省份
  21. CityName string `gorm:"type:varchar(12)" json:"cityName"` //市
  22. DistrictName string `gorm:"type:varchar(12)" json:"districtName"` //区
  23. InstallLocation string `gorm:"type:varchar(100)" json:"installLocation"` //安装位置
  24. Latitude float64 `gorm:"type:double(17, 14) " json:"latitude"` //纬度
  25. Longitude float64 `gorm:"type:double(17, 14) " json:"longitude"` //经度
  26. PhotoUrl string `gorm:"type:varchar(255) " json:"photoUrl"` //照片地址
  27. Remark string `gorm:"type:varchar(1000) " json:"remark"` //备注
  28. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  29. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  30. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  31. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  32. UpdateUser int64 `gorm:"type:bigint" 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. Threshold string `gorm:"type: varchar(255)" json:"threshold"` //阈值
  37. CameraId int `gorm:"type:int" json:"cameraId"` //归属摄像机id
  38. CameraSn string `gorm:"type: varchar(60) " json:"cameraSn"` //归属摄像机sn
  39. }
  40. func (ManholeCover) TableName() string {
  41. return "device_manhole_cover"
  42. }
  43. func (c ManholeCover) 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 ManholeCover) IsExistedBySN() bool {
  48. var count int64
  49. _ = Db.Debug().Model(&c).Where(" manhole_sn = ? and is_deleted = ?",
  50. c.ManholeSn, c.IsDeleted).Count(&count).Error
  51. return count > 0
  52. }
  53. func (c ManholeCover) IsExistedByNameAndCode() bool {
  54. var devices []ManholeCover
  55. err := Db.Debug().Model(&c).Where(" manhole_sn = ? and is_deleted = ?",
  56. c.ManholeSn, 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 *ManholeCover) Create() error {
  69. return Db.Debug().Model(&c).Save(&c).Error
  70. }
  71. func (c *ManholeCover) Update() error {
  72. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  73. }
  74. func (c *ManholeCover) GetDevice() error {
  75. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  76. return err
  77. }
  78. func (c ManholeCover) GetDevices(offset, limit int) ([]ManholeCover, int64, error) {
  79. var devices []ManholeCover
  80. var count int64
  81. db := Db.Debug().Model(&c).Where(" manhole_name like ? and is_deleted = 0", "%"+c.ManholeName+"%")
  82. db.Count(&count)
  83. err := db.Offset(offset).Limit(limit).Find(&devices).Error
  84. return devices, count, err
  85. }
  86. func (c ManholeCover) GetAllDevices() ([]*ManholeCover, error) {
  87. var devices []*ManholeCover
  88. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  89. return devices, err
  90. }