前言
本次设计任务是要设计一个招聘信息管理系统,通过这个系统能够满足管理员,用户和企业的招聘信息管理功能。系统的主要功能包括首页、个人中心、用户管理、企业管理、工作类型管理、企业招聘管理、投简信息管理、面试邀请管理、求职信息管理、社区留言、系统管理等功能。
管理员可以根据系统给定的账号进行登录,登录后可以进入招聘信息管理系统,对招聘信息管理系统所有模块进行管理。包括查看和修改自己的个人信息以及登录密码。
该系统为每一个用户都分配了一个用户账号,用户通过账号的登录可以在系统中查看招聘信息及对个人信息进行修改等功能。
系统设计
可以将招聘信息管理系统的功能分为管理员,用户和企业三个部分,系统的主要功能包括首页、个人中心、用户管理、企业管理、工作类型管理、企业招聘管理、投简信息管理、面试邀请管理、求职信息管理、社区留言、系统管理等内容。任何用户只要进入网站不需登录也可浏览到的信息,后台管理是针对已登录的用户看到满意的招聘信息而设计的。
1、一般用户的功能及权限
所谓一般用户就是指还没有注册的过客,他们可以浏览主页面上的信息。但如果要进入后台进行信息管理时,要登录注册,只有注册成功才有的权限。
2、管理员的功能及权限
用户信息的添加和管理,招聘信息详细信息添加和管理,文档信息添加和管理以及网站信息管理,这些都是管理员的功能。
数据库设计
ER 图设计
概念模型与数据建模用户的观点一致,用于信息世界的建模工具。通过E-R图可以清楚地描述系统涉及到的实体之间的相互关系。
数据库设计
由于涉及的数据库表比较多,此处只展示部分的数据库表。
系统详细设计
系统功能模块
招聘信息管理系统,在系统首页可以查看首页、企业招聘、求职信息、新闻资讯、社区留言、个人中心、后台管理等内容进行详细操作,如图。
企业招聘,在企业招聘页面可以查看企业名称、招聘岗位、图片、企业账号、工作类型、企业邮箱、联系电话、联系人、招聘人数、工资待遇、工作地点、职位要求等详细内容,并进行投简,评论或收藏操作。
管理员功能模块
管理员登录系统后,可以对首页、个人中心、用户管理、企业管理、工作类型管理、企业招聘管理、投简信息管理、面试邀请管理、求职信息管理、社区留言、系统管理等功能进行相应操作。
企业管理,在企业管理页面可以对索引、企业账号、企业名称、企业图片、联系人、联系电话、企业邮箱、企业地址等内容进行详情,修改和删除等操作。
企业后台管理模块
企业登录进入招聘信息管理系统,可以对首页、个人中心、企业招聘管理、投简信息管理、面试邀请管理等功能进行相应操作。
投简信息管理,在投简信息管理页面可以对索引、招聘编号、岗位名称、企业账号、企业名称、工作类型、联系电话、企业邮箱、账号、姓名、手机、简历文件、投简时间、审核回复、审核状态、审核等内容进行详情或面试邀请操作。
代码
由于代码较多,此处只展示部分代码。
投简信息
@RestController
@RequestMapping("/toujianxinxi")
public class ToujianxinxiController {
@Autowired
private ToujianxinxiService toujianxinxiService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,ToujianxinxiEntity toujianxinxi,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("qiye")) {
toujianxinxi.setQiyezhanghao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("yonghu")) {
toujianxinxi.setZhanghao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<ToujianxinxiEntity> ew = new EntityWrapper<ToujianxinxiEntity>();
PageUtils page = toujianxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, toujianxinxi), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,ToujianxinxiEntity toujianxinxi,
HttpServletRequest request){
EntityWrapper<ToujianxinxiEntity> ew = new EntityWrapper<ToujianxinxiEntity>();
PageUtils page = toujianxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, toujianxinxi), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( ToujianxinxiEntity toujianxinxi){
EntityWrapper<ToujianxinxiEntity> ew = new EntityWrapper<ToujianxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( toujianxinxi, "toujianxinxi"));
return R.ok().put("data", toujianxinxiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(ToujianxinxiEntity toujianxinxi){
EntityWrapper< ToujianxinxiEntity> ew = new EntityWrapper< ToujianxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( toujianxinxi, "toujianxinxi"));
ToujianxinxiView toujianxinxiView = toujianxinxiService.selectView(ew);
return R.ok("查询投简信息成功").put("data", toujianxinxiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
ToujianxinxiEntity toujianxinxi = toujianxinxiService.selectById(id);
return R.ok().put("data", toujianxinxi);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
ToujianxinxiEntity toujianxinxi = toujianxinxiService.selectById(id);
return R.ok().put("data", toujianxinxi);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody ToujianxinxiEntity toujianxinxi, HttpServletRequest request){
toujianxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(toujianxinxi);
toujianxinxiService.insert(toujianxinxi);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody ToujianxinxiEntity toujianxinxi, HttpServletRequest request){
toujianxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(toujianxinxi);
toujianxinxiService.insert(toujianxinxi);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
@Transactional
public R update(@RequestBody ToujianxinxiEntity toujianxinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(toujianxinxi);
toujianxinxiService.updateById(toujianxinxi);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
toujianxinxiService.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;
Date remindEndDate = null;
if(map.get("remindstart")!=null) {
Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindStart);
remindStartDate = c.getTime();
map.put("remindstart", sdf.format(remindStartDate));
}
if(map.get("remindend")!=null) {
Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindEnd);
remindEndDate = c.getTime();
map.put("remindend", sdf.format(remindEndDate));
}
}
Wrapper<ToujianxinxiEntity> wrapper = new EntityWrapper<ToujianxinxiEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("qiye")) {
wrapper.eq("qiyezhanghao", (String)request.getSession().getAttribute("username"));
}
if(tableName.equals("yonghu")) {
wrapper.eq("zhanghao", (String)request.getSession().getAttribute("username"));
}
int count = toujianxinxiService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
企业
@RestController
@RequestMapping("/qiye")
public class QiyeController {
@Autowired
private QiyeService qiyeService;
@Autowired
private TokenService tokenService;
/**
* 登录
*/
@IgnoreAuth
@RequestMapping(value = "/login")
public R login(String username, String password, String captcha, HttpServletRequest request) {
QiyeEntity user = qiyeService.selectOne(new EntityWrapper<QiyeEntity>().eq("qiyezhanghao", username));
if(user==null || !user.getMima().equals(password)) {
return R.error("账号或密码不正确");
}
String token = tokenService.generateToken(user.getId(), username,"qiye", "企业" );
return R.ok().put("token", token);
}
/**
* 注册
*/
@IgnoreAuth
@RequestMapping("/register")
public R register(@RequestBody QiyeEntity qiye){
//ValidatorUtils.validateEntity(qiye);
QiyeEntity user = qiyeService.selectOne(new EntityWrapper<QiyeEntity>().eq("qiyezhanghao", qiye.getQiyezhanghao()));
if(user!=null) {
return R.error("注册用户已存在");
}
Long uId = new Date().getTime();
qiye.setId(uId);
qiyeService.insert(qiye);
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");
QiyeEntity user = qiyeService.selectById(id);
return R.ok().put("data", user);
}
/**
* 密码重置
*/
@IgnoreAuth
@RequestMapping(value = "/resetPass")
public R resetPass(String username, HttpServletRequest request){
QiyeEntity user = qiyeService.selectOne(new EntityWrapper<QiyeEntity>().eq("qiyezhanghao", username));
if(user==null) {
return R.error("账号不存在");
}
user.setMima("123456");
qiyeService.updateById(user);
return R.ok("密码已重置为:123456");
}
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,QiyeEntity qiye,
HttpServletRequest request){
EntityWrapper<QiyeEntity> ew = new EntityWrapper<QiyeEntity>();
PageUtils page = qiyeService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, qiye), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,QiyeEntity qiye,
HttpServletRequest request){
EntityWrapper<QiyeEntity> ew = new EntityWrapper<QiyeEntity>();
PageUtils page = qiyeService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, qiye), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( QiyeEntity qiye){
EntityWrapper<QiyeEntity> ew = new EntityWrapper<QiyeEntity>();
ew.allEq(MPUtil.allEQMapPre( qiye, "qiye"));
return R.ok().put("data", qiyeService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(QiyeEntity qiye){
EntityWrapper< QiyeEntity> ew = new EntityWrapper< QiyeEntity>();
ew.allEq(MPUtil.allEQMapPre( qiye, "qiye"));
QiyeView qiyeView = qiyeService.selectView(ew);
return R.ok("查询企业成功").put("data", qiyeView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
QiyeEntity qiye = qiyeService.selectById(id);
return R.ok().put("data", qiye);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
QiyeEntity qiye = qiyeService.selectById(id);
return R.ok().put("data", qiye);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody QiyeEntity qiye, HttpServletRequest request){
qiye.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(qiye);
QiyeEntity user = qiyeService.selectOne(new EntityWrapper<QiyeEntity>().eq("qiyezhanghao", qiye.getQiyezhanghao()));
if(user!=null) {
return R.error("用户已存在");
}
qiye.setId(new Date().getTime());
qiyeService.insert(qiye);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody QiyeEntity qiye, HttpServletRequest request){
qiye.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(qiye);
QiyeEntity user = qiyeService.selectOne(new EntityWrapper<QiyeEntity>().eq("qiyezhanghao", qiye.getQiyezhanghao()));
if(user!=null) {
return R.error("用户已存在");
}
qiye.setId(new Date().getTime());
qiyeService.insert(qiye);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
@Transactional
public R update(@RequestBody QiyeEntity qiye, HttpServletRequest request){
//ValidatorUtils.validateEntity(qiye);
qiyeService.updateById(qiye);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
qiyeService.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;
Date remindEndDate = null;
if(map.get("remindstart")!=null) {
Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindStart);
remindStartDate = c.getTime();
map.put("remindstart", sdf.format(remindStartDate));
}
if(map.get("remindend")!=null) {
Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindEnd);
remindEndDate = c.getTime();
map.put("remindend", sdf.format(remindEndDate));
}
}
Wrapper<QiyeEntity> wrapper = new EntityWrapper<QiyeEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = qiyeService.selectCount(wrapper);
return R.ok().put("count", count);
}
}