UserOfflineRechargeDao.php 578 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020/6/2
  7. *
  8. *
  9. */
  10. namespace app\common\dao\user;
  11. use app\common\dao\BaseDao;
  12. use app\common\model\user\UserOfflineRecharge;
  13. use app\common\model\user\UserRecharge;
  14. use think\db\BaseQuery;
  15. /**
  16. * Class UserRechargeDao
  17. * @package app\common\dao\user
  18. * @author xaboy
  19. * @day 2020/6/2
  20. */
  21. class UserOfflineRechargeDao extends BaseDao
  22. {
  23. /**
  24. * @return string
  25. * @author xaboy
  26. * @day 2020/6/2
  27. */
  28. protected function getModel(): string
  29. {
  30. return UserOfflineRecharge::class;
  31. }
  32. }