lightRecordService.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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, int64, *common.Errors) {
  11. var record dao.LightRecord
  12. offset := (current - 1) * size
  13. limit := size
  14. records, total, err := record.GetRecords(offset, limit, start, end, searchValue, id)
  15. if err != nil {
  16. return nil, 0, common.FailResponse(err.Error(), nil)
  17. }
  18. return records, total, 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. }
  32. func (s *lightRecordService) Detail(id int) (dao.LightRecord, error) {
  33. record := &dao.LightRecord{
  34. Id: id,
  35. }
  36. return record.Get()
  37. }