mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-07 09:21:12 +08:00
19 lines
227 B
PHP
19 lines
227 B
PHP
<?php
|
|
|
|
namespace App\Services\Frontend\Trade;
|
|
|
|
use App\Services\Frontend\OrderTrait;
|
|
use App\Services\Frontend\Service;
|
|
|
|
class TradeCancel extends Service
|
|
{
|
|
|
|
use OrderTrait;
|
|
|
|
public function handle($sn)
|
|
{
|
|
|
|
}
|
|
|
|
}
|