mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 20:52:44 +08:00
18 lines
253 B
PHP
18 lines
253 B
PHP
<?php
|
|
|
|
namespace App\Services\Frontend;
|
|
|
|
use App\Validators\Order as OrderValidator;
|
|
|
|
trait OrderTrait
|
|
{
|
|
|
|
public function checkOrderBySn($sn)
|
|
{
|
|
$validator = new OrderValidator();
|
|
|
|
return $validator->checkOrderBySn($sn);
|
|
}
|
|
|
|
}
|