LightStrategyDao.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "time"
  5. )
  6. type LightStrategy struct {
  7. ID int `gorm:"primary key" json:"id"` //编号
  8. LightName string `gorm:"type:varchar(64)" json:"lightName"` //策略名称
  9. LightControlType int `gorm:"type:int" json:"lightControlType"` //灯控类型 设置 1=485,2=nb-iot
  10. OptoSensorID int `gorm:"type:int" json:"optoSensorId"` //光传感器ID
  11. StartTime string `gorm:"type:varchar(60)" json:"startTime"` //策略期限开始时间
  12. EndTime string `gorm:"type:varchar(60)" json:"endTime"` //策略期限结束时间
  13. IsAllYear int `gorm:"type:int;default 1" json:"isAllYear"` //全年设置2=是,1=否
  14. IsAutomaticRenewal int `gorm:"type:int;default 1" json:"isAutomaticRenewal"` //自动续期设置 2=是,1=否
  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. Status int `gorm:"type:int;default 1" json:"status"` //状态 0=正常,1=异常
  22. LightSn string `gorm:"type:varchar(64)" json:"lightSn"` //策略编码
  23. ManualTime int `gorm:"type:int;default 0" json:"manualTime"` //手动控制时间
  24. }
  25. func (LightStrategy) TableName() string {
  26. return "strategy_light"
  27. }
  28. func (c *LightStrategy) Delete() error {
  29. return Db.Model(&c).Where("id = ?", c.ID).Updates(map[string]interface{}{"update_time": c.UpdateTime,
  30. "update_user": c.UpdateUser, "is_deleted": c.IsDeleted}).Error
  31. }
  32. func (c LightStrategy) IsExistedBySN() bool {
  33. var count int64
  34. _ = Db.Model(&c).Where(" light_sn = ? and is_deleted = ?",
  35. c.LightSn, c.IsDeleted).Count(&count).Error
  36. return count > 0
  37. }
  38. func (c LightStrategy) IsExistedByNameAndCode() bool {
  39. var Strategies []LightStrategy
  40. err := Db.Model(&c).Where("gateway_sn = ? and is_deleted = ?",
  41. c.TenantId, c.IsDeleted).Find(&Strategies).Error
  42. if err == gorm.ErrRecordNotFound {
  43. return false
  44. }
  45. for _, d := range Strategies {
  46. if d.ID != c.ID {
  47. return true
  48. }
  49. }
  50. return false
  51. }
  52. func (c *LightStrategy) Create() error {
  53. return Db.Model(&c).Save(&c).Error
  54. }
  55. func (c *LightStrategy) Update() error {
  56. return Db.Model(&c).Where(" id = ? and is_deleted = 0", c.ID).Updates(&c).Error
  57. }
  58. func (c *LightStrategy) GetStrategy() error {
  59. err := Db.Model(&c).Where(" id = ? and is_deleted = 0", c.ID).First(&c).Error
  60. return err
  61. }
  62. func (c LightStrategy) GetStrategies(offset, limit int) ([]LightStrategy, int64, error) {
  63. var Strategies []LightStrategy
  64. var count int64
  65. db := Db.Model(&c).Where("is_deleted = 0")
  66. if c.LightSn != "" {
  67. db = db.Where(" light_name like ? or light_sn like ?", "%"+c.LightSn+"%", "%"+c.LightSn+"%")
  68. }
  69. db.Count(&count)
  70. err := db.Offset(offset).Limit(limit).Find(&Strategies).Error
  71. return Strategies, count, err
  72. }
  73. func (c LightStrategy) GetAllStrategies() ([]*LightStrategy, error) {
  74. var Strategies []*LightStrategy
  75. err := Db.Model(&c).Where(" tenant_id = ? and is_deleted = ? ", c.TenantId,
  76. c.IsDeleted).Scan(&Strategies).Error
  77. return Strategies, err
  78. }