new-admin-api/app/common/repositories/user/ExchangeQuotaRepository.php

20 lines
306 B
PHP

<?php
namespace app\common\repositories\user;
use app\common\dao\user\ExchangeQuotaDao;
use app\common\repositories\BaseRepository;
class ExchangeQuotaRepository extends BaseRepository{
protected $dao;
public function __construct(ExchangeQuotaDao $dao){
$this->dao = $dao;
}
}