lightRecordService.go 1004 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package service
  2. import (
  3. "fmt"
  4. "iot_manager_service/app/record/dao"
  5. "iot_manager_service/app/record/edge_service"
  6. "iot_manager_service/util/common"
  7. )
  8. var LightRecordService = new(lightRecordService)
  9. type lightRecordService struct{}
  10. func (s *lightRecordService) List(searchValue, start, end string, id int, current int, size int) ([]dao.LightRecord, *common.Errors) {
  11. var record dao.LightRecord
  12. offset := (current - 1) * size
  13. limit := size
  14. records, err := record.GetRecords(offset, limit, start, end, searchValue)
  15. if err != nil {
  16. return nil, common.FailResponse(err.Error(), nil)
  17. }
  18. return records, nil
  19. }
  20. // Refresh 同步记录
  21. func (s *lightRecordService) Refresh() {
  22. // TODO:边缘数据
  23. up := edge_service.RecordLightUp{}
  24. maxId, maxUpDateTime := dao.LightRecord{}.GetMaxIdAndUpDateTime()
  25. recordLightUpDatas, err := up.SyncRecord(maxId, maxUpDateTime)
  26. dao.LightRecord{}.BatchCreate(recordLightUpDatas)
  27. if err != nil {
  28. fmt.Printf("Refresh err.Error() = %v", err)
  29. return
  30. }
  31. }