123456789101112131415 |
- package service
- import (
- "iot_manager_service/app/record/dao"
- "iot_manager_service/util"
- )
- var LightRecordService = new(lightRecordService)
- type lightRecordService struct{}
- func (s *lightRecordService) List(searchValue, start, end string, id int) ([]dao.LightRecord, *util.Errors) {
- var records []dao.LightRecord
- return records, nil
- }
|