| 123456789101112131415161718 |
- <?php
- namespace App\Module\Promotion\Repositorys;
- use App\Module\Promotion\Models\PromotionTalentConfig;
- use Dcat\Admin\Repositories\EloquentRepository;
- /**
- * 达人等级配置数据仓库类
- *
- * 提供达人等级配置数据的访问和操作功能。
- * 该类是达人等级配置模块与后台管理系统的桥梁,用于处理达人等级配置数据的CRUD操作。
- * 达人等级配置定义了不同达人等级的要求和权益。
- */
- class PromotionTalentConfigRepository extends EloquentRepository
- {
- protected $eloquentClass = PromotionTalentConfig::class;
- }
|