feat: order

This commit is contained in:
2025-01-22 17:58:36 +08:00
parent 911c4fcf70
commit b2f96de226
7 changed files with 287 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
<?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()
{
}
}