|
|
@@ -133,7 +133,8 @@ class AwardIntegralPriceRepository extends BaseRepository
|
|
|
public function getLakeList(array $where, $page, $limit)
|
|
|
{
|
|
|
// 根据条件查询数据,$where 为查询条件数组
|
|
|
- $query = AwardLakeDao::search($where);
|
|
|
+ $mark = app()->make(AwardLakeDao::class);
|
|
|
+ $query = $mark->search($where);
|
|
|
|
|
|
// 统计满足条件的数据总数
|
|
|
$count = $query->count();
|