- package com.fuzamei.web;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import com.fuzamei.service.PlannerService;
- @RestController
- @RequestMapping(path="/planner")
- public class PlannerAction {
- @Autowired
- private PlannerService plannerService;
- }
|