大家好!我是职场程序猿,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发环境
- 开发语言:Java
- 框架:springboot
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
论文目录
【如需全文或源码请按文末获取联系】
一、项目简介
粮仓管理系统管理系统按照操作主体分为管理员和用户。管理员的功能包括字典管理、粮仓管理、出入库管理、出入库详情管理、出受粮任务管理、粮仓保管员管理、管理员管理。用户的功能包括管理部门以及部门岗位信息,管理粮仓信息,培训信息,薪资信息等。该系统采用了Mysql数据库,Java语言,Spring Boot框架等技术进行编程实现。
二、系统设计
2.1软件功能模块设计
图4.1即为设计的管理员功能结构
2.2数据库设计
(1)下图是出入库详情实体和其具备的属性。
(2)下图是出入库实体和其具备的属性。
(3)下图是粮仓保管员实体和其具备的属性。
(5)下图是出受粮任务实体和其具备的属性。
三、系统项目部分截图
3.1管理员功能实现
粮仓管理
图5.1 即为编码实现的粮仓管理界面,管理员在粮仓管理界面中可以对界面中显示,可以对粮仓信息的粮仓状态进行查看,可以添加新的粮仓信息等。
3.2出收粮任务管理
图5.2 即为编码实现的出收粮任务管理界面,管理员在出收粮任务管理界面中查看奖罚种类信息,奖罚描述信息,新增出收粮任务信息等。
3.3出入库管理
图5.3 即为编码实现的出入库管理界面,管理员在出入库管理界面中新增出入库,可以删除出入库。
3.4保管员管理
图5.4 即为编码实现的保管员管理界面,管理员在保管员管理界面查看保管可以添加新保管员的信息,可以编辑保管员信息,删除保管员信息。
四、部分核心代码
package com.controller;
import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
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.*;
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.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;
/**
* 出入库详情
* 后端接口
* @author
* @email
*/
@RestController
@Controller
@RequestMapping("/liangcangChuruInoutList")
public class LiangcangChuruInoutListController {
private static final Logger logger = LoggerFactory.getLogger(LiangcangChuruInoutListController.class);
private static final String TABLE_NAME = "liangcangChuruInoutList";
@Autowired
private LiangcangChuruInoutListService liangcangChuruInoutListService;
@Autowired
private TokenService tokenService;
@Autowired
private DictionaryService dictionaryService;//字典
@Autowired
private LiangcangService liangcangService;//粮仓
@Autowired
private LiangcangChuruInoutService liangcangChuruInoutService;//出入库
@Autowired
private RenwuService renwuService;//出受粮任务
@Autowired
private YonghuService yonghuService;//粮仓保管员
@Autowired
private UsersService usersService;//管理员
/**
* 后端列表
*/
@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(false)
return R.error(511,"永不会进入");
else if("粮仓保管员".equals(role))
params.put("yonghuId",request.getSession().getAttribute("userId"));
CommonUtil.checkMap(params);
PageUtils page = liangcangChuruInoutListService.queryPage(params);
//字典表数据转换
List<LiangcangChuruInoutListView> list =(List<LiangcangChuruInoutListView>)page.getList();
for(LiangcangChuruInoutListView c:list){
//修改对应字典表字段
dictionaryService.dictionaryConvert(c, request);
}
return R.ok().put("data", page);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id, HttpServletRequest request){
logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
LiangcangChuruInoutListEntity liangcangChuruInoutList = liangcangChuruInoutListService.selectById(id);
if(liangcangChuruInoutList !=null){
//entity转view
LiangcangChuruInoutListView view = new LiangcangChuruInoutListView();
BeanUtils.copyProperties( liangcangChuruInoutList , view );//把实体数据重构到view中
//级联表 出入库
//级联表
LiangcangChuruInoutEntity liangcangChuruInout = liangcangChuruInoutService.selectById(liangcangChuruInoutList.getLiangcangChuruInoutId());
if(liangcangChuruInout != null){
BeanUtils.copyProperties( liangcangChuruInout , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段,当前表的级联注册表
view.setLiangcangChuruInoutId(liangcangChuruInout.getId());
}
//级联表 粮仓
//级联表
LiangcangEntity liangcang = liangcangService.selectById(liangcangChuruInoutList.getLiangcangId());
if(liangcang != null){
BeanUtils.copyProperties( liangcang , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段,当前表的级联注册表
view.setLiangcangId(liangcang.getId());
}
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody LiangcangChuruInoutListEntity liangcangChuruInoutList, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,liangcangChuruInoutList:{}",this.getClass().getName(),liangcangChuruInoutList.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(false)
return R.error(511,"永远不会进入");
Wrapper<LiangcangChuruInoutListEntity> queryWrapper = new EntityWrapper<LiangcangChuruInoutListEntity>()
.eq("liangcang_churu_inout_id", liangcangChuruInoutList.getLiangcangChuruInoutId())
.eq("liangcang_id", liangcangChuruInoutList.getLiangcangId())
.eq("liangcang_churu_inout_list_number", liangcangChuruInoutList.getLiangcangChuruInoutListNumber())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
LiangcangChuruInoutListEntity liangcangChuruInoutListEntity = liangcangChuruInoutListService.selectOne(queryWrapper);
if(liangcangChuruInoutListEntity==null){
liangcangChuruInoutList.setInsertTime(new Date());
liangcangChuruInoutList.setCreateTime(new Date());
liangcangChuruInoutListService.insert(liangcangChuruInoutList);
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody LiangcangChuruInoutListEntity liangcangChuruInoutList, HttpServletRequest request) throws NoSuchFieldException, ClassNotFoundException, IllegalAccessException, InstantiationException {
logger.debug("update方法:,,Controller:{},,liangcangChuruInoutList:{}",this.getClass().getName(),liangcangChuruInoutList.toString());
LiangcangChuruInoutListEntity oldLiangcangChuruInoutListEntity = liangcangChuruInoutListService.selectById(liangcangChuruInoutList.getId());//查询原先数据
String role = String.valueOf(request.getSession().getAttribute("role"));
// if(false)
// return R.error(511,"永远不会进入");
liangcangChuruInoutListService.updateById(liangcangChuruInoutList);//根据id更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Integer[] ids, HttpServletRequest request){
logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
List<LiangcangChuruInoutListEntity> oldLiangcangChuruInoutListList =liangcangChuruInoutListService.selectBatchIds(Arrays.asList(ids));//要删除的数据
liangcangChuruInoutListService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
/**
* 批量上传
*/
@RequestMapping("/batchInsert")
public R save( String fileName, HttpServletRequest request){
logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);
Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId")));
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
List<LiangcangChuruInoutListEntity> liangcangChuruInoutListList = new ArrayList<>();//上传的东西
Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段
Date date = new Date();
int lastIndexOf = fileName.lastIndexOf(".");
if(lastIndexOf == -1){
return R.error(511,"该文件没有后缀");
}else{
String suffix = fileName.substring(lastIndexOf);
if(!".xls".equals(suffix)){
return R.error(511,"只支持后缀为xls的excel文件");
}else{
URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径
File file = new File(resource.getFile());
if(!file.exists()){
return R.error(511,"找不到上传文件,请联系管理员");
}else{
List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件
dataList.remove(0);//删除第一行,因为第一行是提示
for(List<String> data:dataList){
//循环
LiangcangChuruInoutListEntity liangcangChuruInoutListEntity = new LiangcangChuruInoutListEntity();
// liangcangChuruInoutListEntity.setLiangcangChuruInoutId(Integer.valueOf(data.get(0))); //出入库 要改的
// liangcangChuruInoutListEntity.setLiangcangId(Integer.valueOf(data.get(0))); //粮仓 要改的
// liangcangChuruInoutListEntity.setLiangcangChuruInoutListNumber(Integer.valueOf(data.get(0))); //操作数量 要改的
// liangcangChuruInoutListEntity.setInsertTime(date);//时间
// liangcangChuruInoutListEntity.setCreateTime(date);//时间
liangcangChuruInoutListList.add(liangcangChuruInoutListEntity);
//把要查询是否重复的字段放入map中
}
//查询是否重复
liangcangChuruInoutListService.insertBatch(liangcangChuruInoutListList);
return R.ok();
}
}
}
}catch (Exception e){
e.printStackTrace();
return R.error(511,"批量插入数据异常,请联系管理员");
}
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微信联系我。