package platform.modules.mobile; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import platform.common.base.controller.BaseController; @Controller @RequestMapping(value = "/mobile/service") public class MobileServiceController extends BaseController { @GetMapping(value = "") public String servicePage(){ return BASE_MOBIl_PATH+"service"; } }