new-admin-api/app/common/dao/user/ExchangeQuotaDao.php

24 lines
248 B
PHP

<?php
namespace app\common\dao\user;
use app\common\dao\BaseDao;
use app\common\model\user\ExchangeQuota;
class ExchangeQuotaDao extends BaseDao{
protected function getModel(): string{
return ExchangeQuota::class;
}
}