lampPoleGroupDao.go 3.0 KB

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