Blame view

src/com/fh/controller/api/V2.java 288 Bytes
338594c8   孙向锦   添加教师端页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  package com.fh.controller.api;
  
  import org.springframework.stereotype.Controller;
  import org.springframework.web.bind.annotation.RequestMapping;
  
  import com.fh.controller.base.BaseController;
  
  @Controller
  @RequestMapping(value = "/api/v2")
  public class V2 extends BaseController {
  	
  	
  
  }