12345678910111213141516171819202122232425262728 |
- <?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/16 9:36
- */
- namespace App\Repositories;
- use App\Models\Coupon;
- class CouponRepository extends BaseRepository
- {
- public function __construct(Coupon $coupon)
- {
- $this->model = $coupon;
- }
- }
|