DepositCardOrderRepository.php 473 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. *
  4. *
  5. * @category xxx
  6. * @package PSR
  7. * @subpackage Documentation\API
  8. * @author xxx <xxx@xxx.com>
  9. * @license GPL https://xxx.com
  10. * @link https://xxx.com
  11. * @ctime: 2020/4/30 15:41
  12. */
  13. namespace App\Repositories;
  14. use App\Models\DepositCardOrder;
  15. class DepositCardOrderRepository extends BaseRepository
  16. {
  17. public function __construct(DepositCardOrder $depositCardOrder)
  18. {
  19. $this->model = $depositCardOrder;
  20. }
  21. }