feat : order

This commit is contained in:
2025-03-21 16:24:16 +08:00
parent 8699b6c6ad
commit 8176feb77b
4 changed files with 122 additions and 7 deletions

View File

@@ -31,7 +31,6 @@ class OrderController extends AbstractController
#[Scene(scene: "list")]
public function list()
{
//todo
return (new OrderListService())->handle();
}
@@ -39,7 +38,6 @@ class OrderController extends AbstractController
#[Scene(scene: "info")]
public function info()
{
//todo
return (new OrderInfoService())->handle();
}

View File

@@ -91,6 +91,8 @@ class OrderController extends AbstractController
/**
* 订单列表
* @return array
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
#[RequestMapping(path: 'order_list',methods: 'get')]
#[Scene(scene: 'order_list')]