lightRecordDao.go 4.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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) ([]LightRecord, error) {
  48. var LightRecords []LightRecord
  49. db := Db.Debug().Model(&c)
  50. if searchValue != "" {
  51. db = db.Where("light_control_sn like ? or lamp_pole_name like ?", "%"+searchValue+"%", "%"+searchValue+"%")
  52. }
  53. if start != "" {
  54. start = start + " 00:00:00"
  55. end = end + " 23:59:59"
  56. db = db.Where("start_time >=? and start_time <= ?", start, end)
  57. }
  58. err := db.Where("is_deleted = 0").Offset(offset).Limit(limit).Find(&LightRecords).Error
  59. return LightRecords, err
  60. }
  61. // 重写参数
  62. func (l LightRecord) assembleRecordHis(records []edge_service.RecordLightUpData) ([]LightRecord, error) {
  63. var temLightRecords []LightRecord
  64. 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").
  65. Scan(&temLightRecords)
  66. m := make(map[string]LightRecord)
  67. for _, temLightRecord := range temLightRecords {
  68. m[temLightRecord.LightControlSn] = temLightRecord
  69. }
  70. var realLightRecords []LightRecord
  71. for _, record := range records {
  72. lightRecord := m[record.Code]
  73. if lightRecord.GroupId == 0 {
  74. continue
  75. }
  76. lightRecord.Id = record.ID
  77. lightRecord.Luminance = record.Brightness
  78. lightRecord.StartTime, _ = time.ParseInLocation("2006-01-02 15:04:05", record.Tstart, time.Local)
  79. lightRecord.EndTime, _ = time.ParseInLocation("2006-01-02 15:04:05", record.Tend, time.Local)
  80. lightRecord.CountTime = int(record.Duration)
  81. lightRecord.IsDeleted = 0
  82. lightRecord.LightControlSn = record.Code
  83. lightRecord.CreateTime = time.Now()
  84. realLightRecords = append(realLightRecords, lightRecord)
  85. }
  86. return realLightRecords, nil
  87. }