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

24 lines
266 B
PHP

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