FundCurrencyRepository.php 357 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Module\Fund\Repositorys;
  3. use App\Module\Fund\Models\FundCurrencyModel;
  4. use Dcat\Admin\Repositories\EloquentRepository;
  5. /**
  6. * 货币配置仓库
  7. */
  8. class FundCurrencyRepository extends EloquentRepository
  9. {
  10. /**
  11. * 关联的模型类
  12. *
  13. * @var string
  14. */
  15. protected $eloquentClass = FundCurrencyModel::class;
  16. }