onDemandGroupDao.go 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "time"
  5. )
  6. // OnDemandGroup 灯随车走分组
  7. type OnDemandGroup struct {
  8. ID int `gorm:"primary_key" json:"id"` //编号
  9. PoleGroupName string `gorm:"type:varchar(64)" json:"poleGroupName"` //分组名称
  10. SN string `gorm:"type:varchar(60)" json:"sn"` //SN
  11. LampPoleCount int `gorm:"type:int" json:"lampPoleCount"` //灯杆数量
  12. LightingNum int `gorm:"type:int" json:"lightingNum"` //亮灯数量
  13. BeforeLightingNum int `gorm:"type:int" json:"beforeLightingNum"` //提前亮灯数
  14. OutTimes int `gorm:"type:int" json:"outTimes"` //延迟时间
  15. TenantId string `gorm:"type:varchar(12)" json:"tenantId"` //租户ID
  16. CreateTime time.Time `gorm:"type:datetime" json:"createTime"` //新增时间
  17. CreateUser int `gorm:"type:int" json:"createUser"` //新增记录操作用户ID
  18. UpdateTime time.Time `gorm:"type:datetime" json:"updateTime"` //修改时间
  19. UpdateUser int `gorm:"type:int" json:"updateUser"` //修改用户
  20. IsDeleted int `gorm:"type:int;default 0" json:"isDeleted"` //是否删除 0=未删除,1=删除
  21. }
  22. func (OnDemandGroup) TableName() string {
  23. return "device_on_demand_group"
  24. }
  25. func (c *OnDemandGroup) Delete() error {
  26. return Db.Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  27. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  28. }
  29. func (c OnDemandGroup) IsExistedBySN() bool {
  30. var count int64
  31. _ = Db.Model(&c).Where(" sn = ? and is_deleted = ?",
  32. c.SN, c.IsDeleted).Count(&count).Error
  33. return count > 0
  34. }
  35. func (c OnDemandGroup) IsExistedByNameAndCode() bool {
  36. var devices []Gateway
  37. err := Db.Model(&c).Where("gateway_sn = ? and is_deleted = ?",
  38. c.TenantId, c.IsDeleted).Find(&devices).Error
  39. if gorm.ErrRecordNotFound == err {
  40. return false
  41. }
  42. for _, d := range devices {
  43. if d.ID != c.ID {
  44. return true
  45. }
  46. }
  47. return false
  48. }
  49. func (c *OnDemandGroup) Create() error {
  50. return Db.Model(&c).Save(&c).Error
  51. }
  52. func (c *OnDemandGroup) Update() error {
  53. return Db.Model(&c).Where(" id = ? ", c.ID).Updates(&c).Error
  54. }
  55. func (c *OnDemandGroup) GetDevice() error {
  56. err := Db.Model(&c).Where(" id = ? ", c.ID).First(&c).Error
  57. return err
  58. }
  59. func (c OnDemandGroup) GetDevices(offset, limit int) ([]OnDemandGroup, error) {
  60. var devices []OnDemandGroup
  61. err := Db.Model(&c).Where("(pole_group_name like ? or sn like ?) and is_deleted = 0", "%"+c.PoleGroupName+"%", "%"+c.PoleGroupName+"%").Offset(offset).Limit(limit).Find(&devices).Error
  62. return devices, err
  63. }
  64. func (c OnDemandGroup) GetAllDevices() ([]*OnDemandGroup, error) {
  65. var devices []*OnDemandGroup
  66. err := Db.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId, c.IsDeleted).Scan(&devices).Error
  67. return devices, err
  68. }