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