1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package service
- import (
- "fmt"
- "iot_manager_service/app/record/dao"
- "iot_manager_service/app/record/edge_service"
- "iot_manager_service/util/common"
- )
- var LightRecordService = new(lightRecordService)
- type lightRecordService struct{}
- func (s *lightRecordService) List(searchValue, start, end string, id int, current int, size int) ([]dao.LightRecord, int64, *common.Errors) {
- var record dao.LightRecord
- offset := (current - 1) * size
- limit := size
- records, total, err := record.GetRecords(offset, limit, start, end, searchValue, id)
- if err != nil {
- return nil, 0, common.FailResponse(err.Error(), nil)
- }
- return records, total, nil
- }
- // Refresh 同步记录
- func (s *lightRecordService) Refresh() {
- // TODO:边缘数据
- up := edge_service.RecordLightUp{}
- maxId, maxUpDateTime := dao.LightRecord{}.GetMaxIdAndUpDateTime()
- recordLightUpDatas, err := up.SyncRecord(maxId, maxUpDateTime)
- dao.LightRecord{}.BatchCreate(recordLightUpDatas)
- if err != nil {
- fmt.Printf("Refresh err.Error() = %v", err)
- return
- }
- }
- func (s *lightRecordService) Detail(id int) (dao.LightRecord, error) {
- record := &dao.LightRecord{
- Id: id,
- }
- return record.Get()
- }
|