| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020/5/30
- *
- *
- */
- namespace app\common\dao\merchant\apply;
- use app\common\dao\BaseDao;
- use app\common\model\merchant\apply\MerchantHaikeApply;
- class MerchantHaikeApplyDao extends BaseDao
- {
- protected function getModel(): string
- {
- return MerchantHaikeApply::class;
- }
- public function test()
- {
- return ($this->getModel())::getDB()->select();
- }
- }
|