大家好!我是岛上程序猿,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发运行环境
- 框架:ssm
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/m0_46388260/89282134
论文目录
【如需全文请按文末获取联系】
一、项目简介
这次开发的仓储管理系统有管理员和用户两个角色,有个人中心,员工管理,设备管理,商品管理,出入库管理,盘点管理,供应商管理,公告管理,基础数据管理。
二、系统设计
2.1软件功能模块设计
下图就是系统功能结构图。
2.2数据库设计
(1)下图就是员工实体E-R图
(2)下图就是公告实体E-R图
(3)下图就是管理员实体E-R图
三、系统项目部分截图
3.1员工管理
管理员管理员工用户,可以添加,修改,删除员工用户信息。下图就是员工用户管理页面。
设备管理
管理员管理设备,可以添加,修改,删除设备信息。下图就是设备管理页面。
商品管理
管理员管理商品,可以添加,修改,删除商品信息。下图就是商品管理页面。
3.2出库管理
管理员对出入库信息进行添加,修改,删除,查询相关操作。下图就是出库管理页面。
3.3入库管理
管理员对出入库信息进行添加,修改,删除,查询相关操作。下图就是入库管理页面。
3.4盘点管理
管理员管理盘点信息,可以在盘点管理里面的盘点列表进行盘点操作,可以对盘点信息进行添加,修改,查询,删除操作。下图就是盘点管理页面。
四、部分核心代码
package com.controller;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.StringUtil;
import java.lang.reflect.InvocationTargetException;
import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.GongyinghsangEntity;
import com.service.GongyinghsangService;
import com.entity.view.GongyinghsangView;
import com.service.YuangongService;
import com.utils.PageUtils;
import com.utils.R;
/**
* 供应商
* 后端接口
* @author
* @email
*/
@RestController
@Controller
@RequestMapping("/gongyinghsang")
public class GongyinghsangController {
private static final Logger logger = LoggerFactory.getLogger(GongyinghsangController.class);
@Autowired
private GongyinghsangService gongyinghsangService;
@Autowired
private TokenService tokenService;
@Autowired
private DictionaryService dictionaryService;
//级联表service
@Autowired
private YuangongService yuangongService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role)){
return R.error(511,"权限为空");
}
else if("员工".equals(role)){
params.put("yuangongId",request.getSession().getAttribute("userId"));
}
params.put("orderBy","id");
PageUtils page = gongyinghsangService.queryPage(params);
//字典表数据转换
List<GongyinghsangView> list =(List<GongyinghsangView>)page.getList();
for(GongyinghsangView c:list){
//修改对应字典表字段
dictionaryService.dictionaryConvert(c);
}
return R.ok().put("data", page);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
GongyinghsangEntity gongyinghsang = gongyinghsangService.selectById(id);
if(gongyinghsang !=null){
//entity转view
GongyinghsangView view = new GongyinghsangView();
BeanUtils.copyProperties( gongyinghsang , view );//把实体数据重构到view中
//修改对应字典表字段
dictionaryService.dictionaryConvert(view);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody GongyinghsangEntity gongyinghsang, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,gongyinghsang:{}",this.getClass().getName(),gongyinghsang.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role)){
return R.error(511,"权限为空");
}
Wrapper<GongyinghsangEntity> queryWrapper = new EntityWrapper<GongyinghsangEntity>()
.eq("gongyinghsang_name", gongyinghsang.getGongyinghsangName())
.eq("gongyinghsang_types", gongyinghsang.getGongyinghsangTypes())
.eq("gongyinghsang_xinyong_types", gongyinghsang.getGongyinghsangXinyongTypes())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
GongyinghsangEntity gongyinghsangEntity = gongyinghsangService.selectOne(queryWrapper);
if(gongyinghsangEntity==null){
gongyinghsang.setInsertTime(new Date());
gongyinghsang.setCreateTime(new Date());
gongyinghsangService.insert(gongyinghsang);
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody GongyinghsangEntity gongyinghsang, HttpServletRequest request){
logger.debug("update方法:,,Controller:{},,gongyinghsang:{}",this.getClass().getName(),gongyinghsang.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role)){
return R.error(511,"权限为空");
}
//根据字段查询是否有相同数据
Wrapper<GongyinghsangEntity> queryWrapper = new EntityWrapper<GongyinghsangEntity>()
.notIn("id",gongyinghsang.getId())
.andNew()
.eq("gongyinghsang_name", gongyinghsang.getGongyinghsangName())
.eq("gongyinghsang_types", gongyinghsang.getGongyinghsangTypes())
.eq("gongyinghsang_xinyong_types", gongyinghsang.getGongyinghsangXinyongTypes())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
GongyinghsangEntity gongyinghsangEntity = gongyinghsangService.selectOne(queryWrapper);
if(gongyinghsangEntity==null){
// String role = String.valueOf(request.getSession().getAttribute("role"));
// if("".equals(role)){
// gongyinghsang.set
// }
gongyinghsangService.updateById(gongyinghsang);//根据id更新
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Integer[] ids){
logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
gongyinghsangService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微信联系我。