Skip to content

Commit

Permalink
完善登录页面和后台主页
Browse files Browse the repository at this point in the history
  • Loading branch information
monsterlin committed Feb 26, 2018
1 parent c5599de commit b0a3d17
Show file tree
Hide file tree
Showing 20 changed files with 10,932 additions and 70 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
package com.monsterlin.PocketCat.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

/**
* @author : monsterlin
* @blog : https://monsterlin.com
* @github : https://github.com/monsterlin
* @desc : 测试器
* @date : 2018/2/26
*/
@Controller
public class TestController {

@RequestMapping(value = "/add")
private String add() {
return "index";
}

@RequestMapping(value = "/all")
private String all() {
return "index";
}

@RequestMapping(value = "/index")
private String index() {
return "index";
}


@RequestMapping(value = "/login")
private String login() {
return "index";
}


@RequestMapping(value = "/update")
private String update() {
return "index";
}


}
Loading

0 comments on commit b0a3d17

Please sign in to comment.