|
<?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;
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|