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
5 changed files with 83 additions and 25 deletions
-
33app/Constants/v3/WithdrawalType.php
-
2app/Controller/v3/OrderOnlineController.php
-
9app/Model/v3/StoreWithdrawal.php
-
43app/Service/v3/Implementations/AppointmentTimeService.php
-
13app/Service/v3/Implementations/StoreService.php
@ -0,0 +1,33 @@ |
|||||
|
<?php |
||||
|
|
||||
|
namespace App\Constants\v3; |
||||
|
|
||||
|
use Hyperf\Constants\AbstractConstants; |
||||
|
use Hyperf\Constants\Annotation\Constants; |
||||
|
|
||||
|
/** |
||||
|
* @Constants |
||||
|
*/ |
||||
|
class WithdrawalType extends AbstractConstants |
||||
|
{ |
||||
|
|
||||
|
/** |
||||
|
* @Message("微信") |
||||
|
*/ |
||||
|
const WECHAT = 1; |
||||
|
|
||||
|
/** |
||||
|
* @Message("余额") |
||||
|
*/ |
||||
|
const BALANCE = 2; |
||||
|
|
||||
|
/** |
||||
|
* @Message("银行") |
||||
|
*/ |
||||
|
const BANK = 3; |
||||
|
|
||||
|
/** |
||||
|
* @Message("支付宝") |
||||
|
*/ |
||||
|
const ALIPAY = 4; |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue