MerchantLakalaApplyDao.php 510 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020/5/30
  7. *
  8. *
  9. */
  10. namespace app\common\dao\merchant\apply;
  11. use app\common\dao\BaseDao;
  12. use app\common\model\merchant\apply\MerchantHaikeApply;
  13. use app\common\model\merchant\apply\MerchantLakalaApply;
  14. class MerchantLakalaApplyDao extends BaseDao
  15. {
  16. protected function getModel(): string
  17. {
  18. return MerchantLakalaApply::class;
  19. }
  20. public function test()
  21. {
  22. return ($this->getModel())::getDB()->select();
  23. }
  24. }