'exact', 'platform_id' => 'exact', 'store_id' => 'exact', 'order_status_id' => 'exact', 'platform_order_id' => 'exact', 'created_date_from' => 'date_from', 'created_date_to' => 'date_to', 'paid_date_from' => 'date_from', 'paid_date_to' => 'date_to', ]; } protected function getDefaultSort(): string { return 'created_date'; } /** * 订单列表 */ #[OA\Get( path: '/orders', summary: '订单列表', description: '获取订单列表,支持分页、多维度筛选和时间范围筛选。返回业务字段,不含 raw/hash。', security: [['bearerAuth' => []]], tags: ['Orders'], parameters: [ new OA\Parameter(name: 'page', in: 'query', required: false, schema: new OA\Schema(type: 'integer', default: 1)), new OA\Parameter(name: 'per_page', in: 'query', required: false, schema: new OA\Schema(type: 'integer', default: 15, maximum: 100)), new OA\Parameter(name: 'company_id', in: 'query', required: false, description: '公司 ID 精确筛选', schema: new OA\Schema(type: 'integer')), new OA\Parameter(name: 'platform_id', in: 'query', required: false, description: '平台 ID 精确筛选', schema: new OA\Schema(type: 'integer')), new OA\Parameter(name: 'store_id', in: 'query', required: false, description: '店铺 ID 精确筛选', schema: new OA\Schema(type: 'integer')), new OA\Parameter(name: 'order_status_id', in: 'query', required: false, description: '订单状态 ID 精确筛选', schema: new OA\Schema(type: 'integer')), new OA\Parameter(name: 'platform_order_id', in: 'query', required: false, description: '平台订单 ID 精确搜索', schema: new OA\Schema(type: 'string')), new OA\Parameter(name: 'created_date_from', in: 'query', required: false, description: '创建时间起始(含)', schema: new OA\Schema(type: 'string', format: 'date', example: '2026-01-01')), new OA\Parameter(name: 'created_date_to', in: 'query', required: false, description: '创建时间截止(含)', schema: new OA\Schema(type: 'string', format: 'date', example: '2026-12-31')), new OA\Parameter(name: 'paid_date_from', in: 'query', required: false, description: '付款时间起始(含)', schema: new OA\Schema(type: 'string', format: 'date', example: '2026-01-01')), new OA\Parameter(name: 'paid_date_to', in: 'query', required: false, description: '付款时间截止(含)', schema: new OA\Schema(type: 'string', format: 'date', example: '2026-12-31')), ], responses: [ new OA\Response( response: 200, description: '获取成功', content: new OA\JsonContent(properties: [ new OA\Property(property: 'code', type: 'integer', example: 0), new OA\Property(property: 'message', type: 'string', example: '获取成功'), new OA\Property(property: 'data', properties: [ new OA\Property(property: 'items', type: 'array', items: new OA\Items(ref: '#/components/schemas/Order')), new OA\Property(property: 'total', type: 'integer', example: 100), new OA\Property(property: 'page', type: 'integer', example: 1), new OA\Property(property: 'per_page', type: 'integer', example: 15), ], type: 'object'), ]) ), new OA\Response(response: 401, description: '未认证', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')), new OA\Response(response: 403, description: '无权限', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')), ] )] #[RequestMapping(path: "", methods: "GET")] public function index(): ResponseInterface|array { return parent::index(); } /** * 订单详情(含关联订单子项) */ #[OA\Get( path: '/orders/{id}', summary: '订单详情', description: '获取订单详情,返回所有业务字段、ext 和关联的 order_items,不含 raw/hash。', security: [['bearerAuth' => []]], tags: ['Orders'], parameters: [ new OA\Parameter(name: 'id', in: 'path', required: true, description: '订单 ID', schema: new OA\Schema(type: 'integer')), ], responses: [ new OA\Response( response: 200, description: '获取成功', content: new OA\JsonContent(properties: [ new OA\Property(property: 'code', type: 'integer', example: 0), new OA\Property(property: 'message', type: 'string', example: '获取成功'), new OA\Property(property: 'data', type: 'object', allOf: [ new OA\Schema(ref: '#/components/schemas/Order'), new OA\Schema(properties: [ new OA\Property(property: 'order_items', type: 'array', items: new OA\Items(type: 'object'), description: '关联订单子项'), ]), ]), ]) ), new OA\Response(response: 401, description: '未认证', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')), new OA\Response(response: 403, description: '无权限', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')), new OA\Response(response: 404, description: '数据不存在', content: new OA\JsonContent(ref: '#/components/schemas/ErrorResponse')), ] )] #[RequestMapping(path: "{id}", methods: "GET")] public function show(int $id): ResponseInterface|array { $result = parent::show($id); // 404 响应直接返回 if ($result instanceof ResponseInterface) { return $result; } // 追加订单子项 $order = $result['data']; $result['data'] = $order->toArray(); $result['data']['order_items'] = $order->getOrderItems()->toArray(); return $result; } }