|
@@ -11,15 +11,15 @@ var LightRecordService = new(lightRecordService)
|
|
|
|
|
|
type lightRecordService struct{}
|
|
|
|
|
|
-func (s *lightRecordService) List(searchValue, start, end string, id int, current int, size int) ([]dao.LightRecord, *common.Errors) {
|
|
|
+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, err := record.GetRecords(offset, limit, start, end, searchValue, id)
|
|
|
+ records, total, err := record.GetRecords(offset, limit, start, end, searchValue, id)
|
|
|
if err != nil {
|
|
|
- return nil, common.FailResponse(err.Error(), nil)
|
|
|
+ return nil, 0, common.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
- return records, nil
|
|
|
+ return records, total, nil
|
|
|
}
|
|
|
|
|
|
// Refresh 同步记录
|