MexPriceAdjustmentRepository.php 385 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Module\Mex\Repositories;
  3. use App\Module\Mex\Models\MexPriceAdjustment;
  4. use UCore\DcatAdmin\Repository\EloquentRepository;
  5. /**
  6. * 农贸市场价格调整记录仓库
  7. */
  8. class MexPriceAdjustmentRepository extends EloquentRepository
  9. {
  10. /**
  11. * 关联的模型类
  12. *
  13. * @var string
  14. */
  15. protected $eloquentClass = MexPriceAdjustment::class;
  16. }