Files
hyperf_service/app/Service/Api/Order/PlaceOrderService.php
2025-01-22 17:58:36 +08:00

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()
{
}
}