handle(); } /** * 装车出餐 * @return array */ #[RequestMapping(path: 'load_action',methods: 'GET')] #[Scene(scene: 'load_action')] public function load_action() { return (new LoadActionService)->handle(); } /** * 异常上报 * @return array */ #[RequestMapping(path: 'abnormal_reporting',methods: 'POST')] #[Scene(scene: 'abnormal_reporting')] public function abnormal_reporting() { return (new AbnormalReportingService)->handle(); } /** * 送达 * @return array */ #[RequestMapping(path: 'deliver',methods: 'GET')] #[Scene(scene: 'deliver')] public function deliver() { return (new DeliverService)->handle(); } }