PlannerAction.java 406 B

1234567891011121314
  1. package com.fuzamei.web;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. import com.fuzamei.service.PlannerService;
  6. @RestController
  7. @RequestMapping(path="/planner")
  8. public class PlannerAction {
  9. @Autowired
  10. private PlannerService plannerService;
  11. }