26 lines
398 B
PHP
26 lines
398 B
PHP
<?php
|
|
/**
|
|
* This service file is part of item.
|
|
*
|
|
* @author ctexthuang
|
|
* @contact ctexthuang@qq.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Api\Order;
|
|
|
|
use App\Service\Api\BaseService;
|
|
|
|
class PlaceOrderService extends BaseService
|
|
{
|
|
/**
|
|
* @var int 1=微信支付 2=支付宝支付 3=余额支付
|
|
*/
|
|
private int $type;
|
|
|
|
public function handle()
|
|
{
|
|
|
|
}
|
|
} |