ResourcePointController.java 461 B

12345678910111213141516171819
  1. package com.uas.kanban.controller;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import com.uas.kanban.base.BaseController;
  5. import com.uas.kanban.model.ResourcePoint;
  6. /**
  7. * 用户
  8. *
  9. * @author sunyj
  10. * @since 2017年9月1日 下午4:42:10
  11. */
  12. @Controller
  13. @RequestMapping("/resourcePoint")
  14. public class ResourcePointController extends BaseController<ResourcePoint> {
  15. }