handle(); } #[RequestMapping(path: "option/cycle_list", methods: "GET")] #[Scene(scene: "option_cycle_list")] public function getOptionCycleList() { return(new OptionCycleListService)->handle(); } #[RequestMapping(path: "meal/remain_count", methods: "GET")] #[Scene(scene: "meal_remain_count")] public function remainMealCateringCount() { return (new MealCycleListService)->remainCount(); } #[RequestMapping(path: "option/remain_count", methods: "GET")] #[Scene(scene: "option_remain_count")] public function remainOptionCateringCount() { return (new OptionCycleListService)->remainCount(); } public function getMealGoodsList() { return (new MealCycleListService)->skuList(); } public function mealCatering() { } /** * @return array * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ #[RequestMapping(path: "option/catering", methods: "POST")] #[Scene(scene: "option_catering")] public function optionCatering() { return (new OptionCateringService)->handle(); } #[RequestMapping(path: "option/check_is_print", methods: "POST")] #[Scene(scene: "option_check_is_print")] public function optionCheckPrint() { return (new PrintService)->check(); } #[RequestMapping(path: "option/catering", methods: "GET")] #[Scene(scene: "option_catering")] public function optionPrintList() { return (new PrintService)->handle(); } }