| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * @package merchant
- *
- * @author xaboy
- * @day 2020/6/2
- *
- *
- */
- namespace app\common\dao\user;
- use app\common\dao\BaseDao;
- use app\common\model\user\UserOfflineRecharge;
- use app\common\model\user\UserRecharge;
- use think\db\BaseQuery;
- /**
- * Class UserRechargeDao
- * @package app\common\dao\user
- * @author xaboy
- * @day 2020/6/2
- */
- class UserOfflineRechargeDao extends BaseDao
- {
- /**
- * @return string
- * @author xaboy
- * @day 2020/6/2
- */
- protected function getModel(): string
- {
- return UserOfflineRecharge::class;
- }
- }
|