handle(); } #[RequestMapping(path: 'city',methods: 'GET')] #[Scene(scene: 'city')] public function getCityList() { return (new CityListService)->handle(); } #[RequestMapping(path: 'mini_wx/about_us',methods: 'GET')] #[Scene(scene: 'mini_wx_config')] public function getMiniWxConfig() { return (new MiniWxConfigService)->handle(); } #[RequestMapping(path: 'config',methods: 'GET')] #[Scene(scene: 'config')] public function systemConfig() { return (new SystemConfigService)->handle(); } }