1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- *
- *
- * @category xxx
- * @package PSR
- * @subpackage Documentation\API
- * @author xxx <xxx@xxx.com>
- * @license GPL https://xxx.com
- * @link https://xxx.com
- * @ctime: 2020/4/30 15:41
- */
- namespace App\Repositories;
- use App\Models\DepositCardOrder;
- class DepositCardOrderRepository extends BaseRepository
- {
- public function __construct(DepositCardOrder $depositCardOrder)
- {
- $this->model = $depositCardOrder;
- }
- }
|