package com.controller;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;
import com.entity.GongrenxinxiEntity;
import com.entity.view.GongrenxinxiView;
import com.service.GongrenxinxiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MPUtil;
import com.utils.CommonUtil;
/**
* 工人信息
* 后端接口
* @author
* @email
* @date 2020-04-28 22:02:53
*/
@RestController
@RequestMapping("/gongrenxinxi")
public class GongrenxinxiController {
@Autowired
private GongrenxinxiService gongrenxinxiService;
@Autowired
private TokenService tokenService;
/**
* 登录
*/
@IgnoreAuth
@RequestMapping(value = "/login")
public R login(String username, String password, String captcha, HttpServletRequest request) {
GongrenxinxiEntity user = gongrenxinxiService.selectOne(new EntityWrapper<GongrenxinxiEntity>().eq("gonghao", username));
if(user==null || !user.getMima().equals(password)) {
return R.error("账号或密码不正确");
}
String token = tokenService.generateToken(user.getId(), username,"gongrenxinxi", "工人信息");
return R.ok().put("token", token);
}
/**
* 注册
*/
@IgnoreAuth
@RequestMapping("/register")
public R register(@RequestBody GongrenxinxiEntity gongrenxinxi){
//ValidatorUtils.validateEntity(gongrenxinxi);
GongrenxinxiEntity user = gongrenxinxiService.selectOne(new EntityWrapper<GongrenxinxiEntity>().eq("gonghao", gongrenxinxi.getGonghao()));
if(user!=null) {
return R.error("注册用户已存在");
}
gongrenxinxi.setId(new Date().getTime());
gongrenxinxiService.insert(gongrenxinxi);
return R.ok();
}
/**
* 退出
*/
@RequestMapping("/logout")
public R logout(HttpServletRequest request) {
request.getSession().invalidate();
return R.ok("退出成功");
}
/**
* 获取用户的session用户信息
*/
@RequestMapping("/session")
public R getCurrUser(HttpServletRequest request){
Long id = (Long)request.getSession().getAttribute("userId");
GongrenxinxiEntity user = gongrenxinxiService.selectById(id);
return R.ok().put("data", user);
}
/**
* 密码重置
*/
@IgnoreAuth
@RequestMapping(value = "/resetPass")
public R resetPass(String username, HttpServletRequest request){
GongrenxinxiEntity user = gongrenxinxiService.selectOne(new EntityWrapper<GongrenxinxiEntity>().eq("gonghao", username));
if(user==null) {
return R.error("账号不存在");
}
user.setMima("123456");
gongrenxinxiService.updateById(user);
return R.ok("密码已重置为:123456");
}
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,GongrenxinxiEntity gongrenxinxi, HttpServletRequest request){
EntityWrapper<GongrenxinxiEntity> ew = new EntityWrapper<GongrenxinxiEntity>();
PageUtils page = gongrenxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gongrenxinxi), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,GongrenxinxiEntity gongrenxinxi, HttpServletRequest request){
EntityWrapper<GongrenxinxiEntity> ew = new EntityWrapper<GongrenxinxiEntity>();
PageUtils page = gongrenxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gongrenxinxi), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( GongrenxinxiEntity gongrenxinxi){
EntityWrapper<GongrenxinxiEntity> ew = new EntityWrapper<GongrenxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( gongrenxinxi, "gongrenxinxi"));
return R.ok().put("data", gongrenxinxiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(GongrenxinxiEntity gongrenxinxi){
EntityWrapper< GongrenxinxiEntity> ew = new EntityWrapper< GongrenxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( gongrenxinxi, "gongrenxinxi"));
GongrenxinxiView gongrenxinxiView = gongrenxinxiService.selectView(ew);
return R.ok("查询工人信息成功").put("data", gongrenxinxiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") String id){
GongrenxinxiEntity gongrenxinxi = gongrenxinxiService.selectById(id);
return R.ok().put("data", gongrenxinxi);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") String id){
GongrenxinxiEntity gongrenxinxi = gongrenxinxiService.selectById(id);
return R.ok().put("data", gongrenxinxi);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody GongrenxinxiEntity gongrenxinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(gongrenxinxi);
GongrenxinxiEntity user = gongrenxinxiService.selectOne(new EntityWrapper<GongrenxinxiEntity>().eq("gonghao", gongrenxinxi.getGonghao()));
if(user!=null) {
return R.error("用户已存在");
}
gongrenxinxi.setId(new Date().getTime());
gongrenxinxiService.insert(gongrenxinxi);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody GongrenxinxiEntity gongrenxinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(gongrenxinxi);
GongrenxinxiEntity user = gongrenxinxiService.selectOne(new EntityWrapper<GongrenxinxiEntity>().eq("gonghao", gongrenxinxi.getGonghao()));
if(user!=null) {
return R.error("用户已存在");
}
gongrenxinxi.setId(new Date().getTime());
gongrenxinxiService.insert(gongrenxinxi);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody GongrenxinxiEntity gongrenxinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(gongrenxinxi);
gongrenxinxiService.updateById(gongrenxinxi);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
gongrenxinxiService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
/**
* 提醒接口
*/
@RequestMapping("/remind/{columnName}/{type}")
public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
@PathVariable("type") String type,@RequestParam Map<String, Object> map) {
map.put("column", columnName);
map.put("type", type);
if(type.equals("2")) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar c = Calendar.getInstance();
Date remindStartDate = null;
程序员王也
- 粉丝: 731
- 资源: 10
最新资源
- 基于java+ssm+mysql的疫情期间高校人员管理系统开题报告.docx
- 基于java+ssm+mysql的校园兼职管理系统开题报告.docx
- 基于java+ssm+mysql的校园二手物品交易平台开题报告.docx
- 三张金花游戏示例demo
- 前后端分离项目《基于Vue.js和SpringBoot的在线办公系统》+源码+论文+说明文档
- FPGA-flash写保护解除
- 基于微信小程序的多肉植物图鉴.zip
- uniapp实现选择省市区镇(街道)四级级联选择,包含三级级联选择(vue3版本)
- tsn-imagenet-pretrained-r50-8xb32-1x1x8-100e-kinetics400-rgb
- Python项目-自动办公-02 批量生成PPT版荣誉证书.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈