| 12345678910111213141516171819 |
- <?php
- namespace App\Module\Point\Repositorys;
- use App\Module\Point\Models\PointCirculationModel;
- use Dcat\Admin\Repositories\EloquentRepository;
- /**
- * 积分流转数据仓库
- *
- * 专门为后台管理提供积分流转数据访问功能
- */
- class PointCirculationRepository extends EloquentRepository
- {
- /**
- * 模型类名
- */
- protected $eloquentClass = PointCirculationModel::class;
- }
|