Blame view

fw-rp-man/src/main/java/cn/fw/rp/web/controller/LoginController.java 426 Bytes
0b3d3960   suchu   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  package cn.fw.rp.web.controller;
  
  import cn.fw.data.base.domain.common.Message;
  import org.springframework.web.bind.annotation.RequestMapping;
  import org.springframework.web.bind.annotation.RestController;
  
  /**
   * @author suchu
   * @since 2018/5/8 15:16
   */
  @RestController
  public class LoginController {
  
      @RequestMapping("")
      Message login(String username, String password) {
  
          return Message.success();
      }
  }