lightRecordDao.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package dao
  2. import (
  3. "iot_manager_service/app/record/edge_service"
  4. "time"
  5. )
  6. type LightRecord struct {
  7. Id int `gorm:"column:id;primary_key;AUTO_INCREMENT; comment:编号" json:"id"`
  8. GroupId int `gorm:"column:group_id; comment:灯杆分组ID" json:"groupId"`
  9. GroupName string `gorm:"column:group_name; comment:灯杆分组名" json:"groupName"`
  10. LampPoleId int `gorm:"column:lamp_pole_id; comment:灯杆ID" json:"lampPoleId"`
  11. LampPoleName string `gorm:"column:lamp_pole_name; comment:灯杆名称" json:"lampPoleName"`
  12. LampPoleSn string `gorm:"column:lamp_pole_sn; comment:灯杆编码" json:"lampPoleSn"`
  13. LightControlId int `gorm:"column:light_control_id; comment:灯控ID" json:"lightControlId"`
  14. LightControlName string `gorm:"column:light_control_name; comment:灯控名称" json:"lightControlName"`
  15. LightControlSn string `gorm:"column:light_control_sn; comment:灯控编号" json:"lightControlSn"`
  16. Luminance int `gorm:"column:luminance; comment:亮度" json:"luminance"`
  17. LightingState int `gorm:"column:lighting_state;default:0; comment:亮灯状态:0-关闭,1-开启" json:"lightingState"`
  18. StartTime time.Time `gorm:"column:start_time; comment:亮灯开始时间; type:datetime" json:"startTime"`
  19. EndTime time.Time `gorm:"column:end_time; comment:亮灯结束时间; type:datetime" json:"endTime"`
  20. CountTime int `gorm:"column:count_time; comment:亮灯时长(分钟)" json:"countTime"`
  21. TenantId string `gorm:"column:tenant_id; comment:租户ID" json:"tenantId"`
  22. CreateTime time.Time `gorm:"column:create_time;NOT NULL; comment:创建日期;type:datetime" json:"createTime"`
  23. UpdateTime time.Time `gorm:"column:update_time;default:CURRENT_TIMESTAMP; comment:新时间 默认为当前时间;type:datetime" json:"updateTime"`
  24. IsDeleted int `gorm:"column:is_deleted;default:0; comment:是否删除:0-否,1-删除" json:"isDeleted"`
  25. }
  26. func (l LightRecord) TableName() string {
  27. return "device_lighting_record_his"
  28. }
  29. // GetMaxIdAndUpDateTime 得到最后请求记录
  30. func (l LightRecord) GetMaxIdAndUpDateTime() (int64, string) {
  31. var lightRecord LightRecord
  32. err := Db.Debug().Order("id desc").First(&lightRecord).Error
  33. if err != nil {
  34. return 0, "2020-01-01 00:00:00"
  35. }
  36. return int64(lightRecord.Id), lightRecord.CreateTime.Format("2006-01-02 15:04:05")
  37. }
  38. // BatchCreate 批量插入
  39. func (l LightRecord) BatchCreate(record []edge_service.RecordLightUpData) error {
  40. his, err := l.assembleRecordHis(record)
  41. if err != nil {
  42. return err
  43. }
  44. return Db.Debug().CreateInBatches(his, 1000).Error
  45. }
  46. // GetRecords 查记录
  47. func (c LightRecord) GetRecords(offset int, limit int, start, end, searchValue string, groupId int) ([]LightRecord, error) {
  48. var LightRecords []LightRecord
  49. db := Db.Debug().Model(&c)
  50. if groupId > 0 {
  51. db.Where("group_id=?", groupId)
  52. }
  53. if searchValue != "" {
  54. db = db.Where("light_control_sn like ? or lamp_pole_name like ?", "%"+searchValue+"%", "%"+searchValue+"%")
  55. }
  56. if start != "" {
  57. start = start + " 00:00:00"
  58. end = end + " 23:59:59"
  59. db = db.Where("start_time >=? and start_time <= ?", start, end)
  60. }
  61. err := db.Where("is_deleted = 0").Offset(offset).Limit(limit).Find(&LightRecords).Error
  62. return LightRecords, err
  63. }
  64. // 重写参数
  65. func (l LightRecord) assembleRecordHis(records []edge_service.RecordLightUpData) ([]LightRecord, error) {
  66. var temLightRecords []LightRecord
  67. Db.Debug().Raw("SELECT a.id light_control_id, a.name light_control_name, a.sn light_control_sn, a.lamp_pole_id, a.lamp_pole_name, a.lamp_pole_sn, a.group_id, b.pole_group_name group_name, a.tenant_id FROM device_light_control a LEFT JOIN device_lamp_pole_group b ON a.group_id=b.id WHERE a.is_deleted=0").
  68. Scan(&temLightRecords)
  69. m := make(map[string]LightRecord)
  70. for _, temLightRecord := range temLightRecords {
  71. m[temLightRecord.LightControlSn] = temLightRecord
  72. }
  73. var realLightRecords []LightRecord
  74. for _, record := range records {
  75. lightRecord := m[record.Code]
  76. if lightRecord.GroupId == 0 {
  77. continue
  78. }
  79. lightRecord.Id = record.ID
  80. lightRecord.Luminance = record.Brightness
  81. lightRecord.StartTime, _ = time.ParseInLocation("2006-01-02 15:04:05", record.Tstart, time.Local)
  82. lightRecord.EndTime, _ = time.ParseInLocation("2006-01-02 15:04:05", record.Tend, time.Local)
  83. lightRecord.CountTime = int(record.Duration)
  84. lightRecord.IsDeleted = 0
  85. lightRecord.LightControlSn = record.Code
  86. lightRecord.CreateTime = time.Now()
  87. realLightRecords = append(realLightRecords, lightRecord)
  88. }
  89. return realLightRecords, nil
  90. }
  91. func (l LightRecord) Get() (LightRecord, error) {
  92. var lightRecord LightRecord
  93. err := Db.Debug().Model(&l).First(&lightRecord).Error
  94. return lightRecord, err
  95. }