| 12345678910111213141516171819 |
- <?php
- namespace App\Module\Mex\Repositories;
- use App\Module\Mex\Models\MexPriceAdjustment;
- use UCore\DcatAdmin\Repository\EloquentRepository;
- /**
- * 农贸市场价格调整记录仓库
- */
- class MexPriceAdjustmentRepository extends EloquentRepository
- {
- /**
- * 关联的模型类
- *
- * @var string
- */
- protected $eloquentClass = MexPriceAdjustment::class;
- }
|