lightRecordService.go 343 B

123456789101112131415
  1. package service
  2. import (
  3. "iot_manager_service/app/record/dao"
  4. "iot_manager_service/util"
  5. )
  6. var LightRecordService = new(lightRecordService)
  7. type lightRecordService struct{}
  8. func (s *lightRecordService) List(searchValue, start, end string, id int) ([]dao.LightRecord, *util.Errors) {
  9. var records []dao.LightRecord
  10. return records, nil
  11. }