Browse Source
Merge branch 'phoenix' of ssh://120.24.33.109:11022/hyzjshwo/lanzu_api_hyperf into phoenix
master
Merge branch 'phoenix' of ssh://120.24.33.109:11022/hyzjshwo/lanzu_api_hyperf into phoenix
master
8 changed files with 34 additions and 33 deletions
-
3app/Controller/v3/OrderListController.php
-
2app/Controller/v3/OrderOnlineController.php
-
14app/Model/v3/UserCollection.php
-
7app/Service/v3/Implementations/CollectStoreService.php
-
1app/Service/v3/Implementations/CouponRecService.php
-
3app/Service/v3/Implementations/LocationService.php
-
35app/Service/v3/Implementations/OrderListService.php
-
2app/Service/v3/Interfaces/OrderListServiceInterface.php
@ -0,0 +1,14 @@ |
|||
<?php |
|||
|
|||
declare (strict_types=1); |
|||
namespace App\Model\v3; |
|||
|
|||
use App\Model\Model; |
|||
use Hyperf\Database\Model\SoftDeletes; |
|||
|
|||
class UserCollection extends Model |
|||
{ |
|||
use SoftDeletes; |
|||
protected $table = 'lanzu_user_collection'; |
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue