大家好!我是职场程序猿,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发运行环境
- 框架:ssm
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/m0_46388260/89287495
论文目录
【如需全文请按文末获取联系】
一、项目简介
这次开发的基于VUE的进出货管理系统管理员和用户。管理员功能有个人中心,用户管理,货物信息管理,货物类型管理,货物入库管理,货物出货管理。
二、系统设计
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 java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
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.format.annotation.DateTimeFormat;
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.HuowuleixingEntity;
import com.entity.view.HuowuleixingView;
import com.service.HuowuleixingService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;
/**
* 货物类型
* 后端接口
* @author
* @email
* @date 2021-05-17 14:11:54
*/
@RestController
@RequestMapping("/huowuleixing")
public class HuowuleixingController {
@Autowired
private HuowuleixingService huowuleixingService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,HuowuleixingEntity huowuleixing,
HttpServletRequest request){
EntityWrapper<HuowuleixingEntity> ew = new EntityWrapper<HuowuleixingEntity>();
PageUtils page = huowuleixingService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huowuleixing), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,HuowuleixingEntity huowuleixing,
HttpServletRequest request){
EntityWrapper<HuowuleixingEntity> ew = new EntityWrapper<HuowuleixingEntity>();
PageUtils page = huowuleixingService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huowuleixing), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( HuowuleixingEntity huowuleixing){
EntityWrapper<HuowuleixingEntity> ew = new EntityWrapper<HuowuleixingEntity>();
ew.allEq(MPUtil.allEQMapPre( huowuleixing, "huowuleixing"));
return R.ok().put("data", huowuleixingService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(HuowuleixingEntity huowuleixing){
EntityWrapper< HuowuleixingEntity> ew = new EntityWrapper< HuowuleixingEntity>();
ew.allEq(MPUtil.allEQMapPre( huowuleixing, "huowuleixing"));
HuowuleixingView huowuleixingView = huowuleixingService.selectView(ew);
return R.ok("查询货物类型成功").put("data", huowuleixingView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
HuowuleixingEntity huowuleixing = huowuleixingService.selectById(id);
return R.ok().put("data", huowuleixing);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
HuowuleixingEntity huowuleixing = huowuleixingService.selectById(id);
return R.ok().put("data", huowuleixing);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody HuowuleixingEntity huowuleixing, HttpServletRequest request){
huowuleixing.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(huowuleixing);
huowuleixingService.insert(huowuleixing);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody HuowuleixingEntity huowuleixing, HttpServletRequest request){
huowuleixing.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(huowuleixing);
huowuleixingService.insert(huowuleixing);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody HuowuleixingEntity huowuleixing, HttpServletRequest request){
//ValidatorUtils.validateEntity(huowuleixing);
huowuleixingService.updateById(huowuleixing);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
huowuleixingService.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<HuowuleixingEntity> wrapper = new EntityWrapper<HuowuleixingEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = huowuleixingService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微信联系我。