MerchantIntentionApplyDao.php 366 B

12345678910111213141516171819202122232425
  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\MerchantIntentionApply;
  13. class MerchantIntentionApplyDao extends BaseDao
  14. {
  15. protected function getModel(): string
  16. {
  17. return MerchantIntentionApply::class;
  18. }
  19. }