|
@@ -13,13 +13,9 @@ type lightRecordService struct{}
|
|
|
|
|
|
func (s *lightRecordService) List(searchValue, start, end string, id int, current int, size int) ([]dao.LightRecord, *common.Errors) {
|
|
|
var record dao.LightRecord
|
|
|
- if searchValue != "" {
|
|
|
- record.LampPoleSn = searchValue
|
|
|
- record.LampPoleName = searchValue
|
|
|
- }
|
|
|
offset := (current - 1) * size
|
|
|
limit := size
|
|
|
- records, err := record.GetRecords(offset, limit, start, end)
|
|
|
+ records, err := record.GetRecords(offset, limit, start, end, searchValue)
|
|
|
if err != nil {
|
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
|
}
|