optoSensoDao.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package dao
  2. import (
  3. "github.com/jinzhu/gorm"
  4. "time"
  5. )
  6. //OptoSensor 集控器
  7. type OptoSensor struct {
  8. ID int `gorm:"primary_key" json:"id"` //编号
  9. Name string `gorm:"type:varchar(64)" json:"name"` //名称
  10. SN string `gorm:"type:varchar(60)" json:"sn"` //唯一编码
  11. LampPoleId int `gorm:"type:int" json:"lampPoleId"` //灯杆id
  12. LampPoleName string `gorm:"type:varchar(64)" json:"lampPoleName"` //灯杆名称
  13. LampPoleSN string `gorm:"type:varchar(64)" json:"lampPoleSN"` //灯杆编码
  14. LampPoleLocation string `gorm:"type:varchar(255)" json:"lampPoleLocation"` //灯杆安装位置
  15. LampLng float64 `gorm:"type:double(17, 14) " json:"poleLng"` //经度
  16. LampLat float64 `gorm:"type:double(17, 14) " json:"poleLat"` //纬度
  17. BrandID int `gorm:"type:int" json:"brandID"` //设备名称
  18. ModelID int `gorm:"type:int" json:"modelID"` //设备型号
  19. GatewayId int `gorm:"type:int" json:"gatewayId"` //所属网关id
  20. InstallTime *time.Time `gorm:"type:date" json:"installTime"` //安装时间
  21. IPAddress string `gorm:"type:varchar(64)" json:"ipAddress"` //IP地址-备用
  22. IsDefault int `gorm:"type:int;default 0" json:"isDefault"` //是否设为首页默认展示 0=不展示,1=设置展示
  23. TenantId int `gorm:"type:int" json:"tenantId"` //租户ID
  24. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  25. CreateUser int64 `gorm:"type:bigint" json:"createUser"` //新增记录操作用户ID
  26. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  27. UpdateUser int64 `gorm:"type:bigint" json:"updateUser"` //修改用户
  28. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  29. Status int `gorm:"type:int" json:"status"` //状态 0=正常,1=异常
  30. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,保留字段(逗号区分)
  31. }
  32. func (OptoSensor) TableName() string {
  33. return "t_dev_opto_sensor"
  34. }
  35. func (c OptoSensor) Delete() error {
  36. return Db.Debug().Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  37. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  38. }
  39. func (c OptoSensor) IsExistedBySN() bool {
  40. var count = 0
  41. _ = Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  42. c.SN, c.IsDeleted).Count(&count).Error
  43. return count > 0
  44. }
  45. func (c OptoSensor) IsExistedByNameAndCode() bool {
  46. var devices []Zigbee
  47. err := Db.Debug().Model(&c).Where(" sn = ? and is_deleted = ?",
  48. c.SN, c.IsDeleted).Find(&devices).Error
  49. //如果查询不到,返回相应的错误
  50. if gorm.IsRecordNotFoundError(err) {
  51. return false
  52. }
  53. for _, d := range devices {
  54. if d.ID != c.ID {
  55. return true
  56. }
  57. }
  58. return false
  59. }
  60. func (c *OptoSensor) Create() error {
  61. return Db.Debug().Model(&c).Save(&c).Error
  62. }
  63. func (c *OptoSensor) Update() error {
  64. return Db.Debug().Model(&c).Where(" id = ? ", c.ID).Update(&c).Error
  65. }
  66. func (c *OptoSensor) GetDevice() error {
  67. err := Db.Debug().Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  68. return err
  69. }
  70. func (c OptoSensor) GetDevices(offset, limit int) ([]OptoSensor, error) {
  71. var devices []OptoSensor
  72. err := Db.Debug().Model(&c).Where(" name like ? ", "%"+c.Name+"%").Offset(offset).Limit(limit).Find(&devices).Error
  73. return devices, err
  74. }
  75. func (c OptoSensor) GetAllDevices() ([]*OptoSensor, error) {
  76. var devices []*OptoSensor
  77. err := Db.Debug().Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  78. return devices, err
  79. }