lampPoleGroupDao.go 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "iot_manager_service/util/common"
  5. "time"
  6. )
  7. // LampPoleGroup 灯杆分组
  8. type LampPoleGroup struct {
  9. ID int `gorm:"primary_key" json:"id"` //编号
  10. PoleGroupName string `gorm:"type:varchar(64)" json:"poleGroupName"` //分组名称
  11. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  12. CreateTime common.Time `gorm:"type:datetime;not null'" json:"createTime"` //新增时间
  13. CreateUser int `gorm:"type:int" json:"createUser"` //新增记录操作用户ID
  14. UpdateTime common.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  15. UpdateUser int `gorm:"type:int" json:"updateUser"` //修改用户
  16. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  17. Tag string `gorm:"type:varchar(255)" json:"tag"` //标签,(备用,逗号区分)
  18. Remark string `gorm:"type:varchar(255)" json:"remark"` //备注
  19. CountLampPole int `gorm:"type:int;default 0" json:"countLampPole,omitempty"` //灯杆数
  20. }
  21. func (LampPoleGroup) TableName() string {
  22. return "device_lamp_pole_group"
  23. }
  24. func (c *LampPoleGroup) Delete() error {
  25. return Db.Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  26. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  27. }
  28. func (c LampPoleGroup) IsExistedByName() bool {
  29. var count int64
  30. _ = Db.Model(&c).Where(" pole_group_name = ? and tenant_id = ? and is_deleted = ?",
  31. c.PoleGroupName, c.TenantId, c.IsDeleted).Count(&count).Error
  32. return count > 0
  33. }
  34. func (c LampPoleGroup) IsExistedByNameAndCode() bool {
  35. var devices []LampPoleGroup
  36. err := Db.Model(&c).Where("pole_group_name = ? and tenant_id = ? and is_deleted = ?",
  37. c.PoleGroupName, c.TenantId, c.IsDeleted).Find(&devices).Error
  38. if gorm.ErrRecordNotFound == err {
  39. return false
  40. }
  41. for _, d := range devices {
  42. if d.ID != c.ID {
  43. return true
  44. }
  45. }
  46. return false
  47. }
  48. func (c *LampPoleGroup) Create() error {
  49. return Db.Model(&c).Save(&c).Error
  50. }
  51. func (c *LampPoleGroup) Update() error {
  52. return Db.Model(&c).Where(" id = ? ", c.ID).Updates(map[string]interface{}{"pole_group_name": c.PoleGroupName, "remark": c.Remark,
  53. "tenant_id": c.TenantId, "update_time": time.Now(), "update_user": c.UpdateUser, "is_deleted": 0}).Error
  54. }
  55. func (c *LampPoleGroup) GetDevice() error {
  56. err := Db.Model(&c).Where(" id = ? ", c.ID).Scan(&c).Error
  57. return err
  58. }
  59. func (c LampPoleGroup) GetDevices(offset, limit int) ([]LampPoleGroup, int64, error) {
  60. var devices []LampPoleGroup
  61. var count int64
  62. db := Db.Model(&c).Where(" pole_group_name like ? and is_deleted = 0", "%"+c.PoleGroupName+"%")
  63. db.Count(&count)
  64. err := db.Offset(offset).Limit(limit).Find(&devices).Error
  65. return devices, count, err
  66. }
  67. func (c LampPoleGroup) GetAllDevices() ([]*LampPoleGroup, error) {
  68. var devices []*LampPoleGroup
  69. err := Db.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  70. return devices, err
  71. }
  72. func (c LampPoleGroup) BatchGet(ids []int) []*LampPoleGroup {
  73. var devices []*LampPoleGroup
  74. Db.Model(&c).Where(" tenant_id = ? and is_deleted = ? and id in (?)", c.TenantId,
  75. c.IsDeleted, ids).Scan(&devices)
  76. return devices
  77. }