新增管理员的注册、登录、更改密码接口

This commit is contained in:
freeebird
2018-10-13 19:37:31 +08:00
parent a626863732
commit 132506deef
7 changed files with 167 additions and 32 deletions

View File

@@ -0,0 +1,76 @@
package cn.mafangui.hotel.controller;
import cn.mafangui.hotel.entity.Admin;
import cn.mafangui.hotel.service.AdminService;
import org.hibernate.validator.constraints.pl.REGON;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping(value = "/admin")
public class AdminController {
@Autowired
private AdminService adminService;
/**
* 登录
* @param userName
* @param password
* @return
*/
@RequestMapping(method = RequestMethod.POST, value = "/login")
public int Login(String userName, String password){
Admin admin = new Admin();
admin.setUserName(userName);
admin.setPassword(password);
if (adminService.login(admin) == null){
return -1;
}
return 0;
}
/**
* 注册
* @param userName
* @param password
* @return
*/
@RequestMapping(method = RequestMethod.POST, value = "/register")
public int register(String userName, String password){
Admin admin = new Admin();
admin.setUserName(userName);
admin.setPassword(password);
return adminService.register(admin);
}
@RequestMapping(method = RequestMethod.POST, value = "/updateProfile")
public int updateProfile(String userName, String password){
Admin admin = new Admin();
admin.setUserName(userName);
admin.setPassword(password);
return adminService.updateProfile(admin);
}
/**
* 查找管理员
* @param userName
* @return
*/
@RequestMapping(value = "/getAdmin")
public Admin getAdmin(String userName){
return adminService.selectByUserName(userName);
}
/**
* 查找所有管理员
* @return
*/
@RequestMapping(value = "/getAllAdmin")
public List<Admin> getAllAdmin(){
return adminService.findAll();
}
}