manholeCoverDao.go 4.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package dao
  2. import (
  3. "github.com/jinzhu/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 int `gorm:"type:int" 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 "t_dev_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 = 0
  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.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 *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).Update(&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, error) {
  79. var devices []ManholeCover
  80. err := Db.Debug().Model(&c).Where(" manhole_name like ? and is_deleted = 0", "%"+c.ManholeName+"%").Offset(offset).Limit(limit).Find(&devices).Error
  81. return devices, err
  82. }
  83. func (c ManholeCover) GetAllDevices() ([]*ManholeCover, error) {
  84. var devices []*ManholeCover
  85. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  86. return devices, err
  87. }