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