大家好!我是职场程序猿,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:微信小程序毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发运行环境
①前端:微信小程序开发工具
② 后端:Java
- 框架:springboot
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/m0_46388260/89223485
论文目录
【如需全文请按文末获取联系】
目录
一、项目简介
本系统实现管理员和用户、商家、配送员四个角色的功能。用户主要在微信端操作,内容有菜品信息,用户可以在线点餐和管理订单信息以及查看配送情况。商家可以发布菜品和管理订单、查看配送情况。管理员可以审核菜品以及管理订单等。配送员可以接单完成配送。本系统可以实现线上的订餐,帮助商家更好的销售餐品。
二、系统设计
2.1软件功能模块设计
本系统的功能结构为用户界面、管理员界面和商家界面、配送员界面,不同角色负责的功能不同,对系统的功能设计采用系统功能结构图进行展示。本系统的功能结构图如下图4.1所示:
2.2数据库设计
(1)管理员信息的ER图如下图4.2所示:
(2)菜品信息ER图如下图4.3所示:
(3)订单信息ER图如下图4.4所示:
(4)配送信息ER图如下图4.5所示:
(6)系统关系ER图如下图4.6所示:
三、系统项目部分截图
3.1注册登陆功能
本功能设计的目的是帮助游客在线订餐。用户和配送员都可以注册。在注册时需要设置账号和密码。用户注册功能的实现界面如下图5.2所示:
3.2首页功能的设计实现
用户登录后可进入首页,在首页里可以看到商家信息和菜品信息,可以进行菜品搜索和购买。首页功能的实现界面如下图5.3所示:
用户信息管理功能的实现界面
用户可以修改自己注册时填写的资料,可以设置头像以及手机号。用户信息管理功能的实现界面如下图5.4所示:
菜品功能的实现界面
用户可以浏览菜品信息,也可以根据菜品的名称进行搜索,菜品信息可以看到图片和价格,菜品信息的实现界面如下图5.5所示:
立即订购功能的实现界面
用户在前台选择喜欢的菜品后可以立即订购,在订购时需要选择地址,立即订购功能的实现界面如下图5.7所示:
我的功能的实现界面
在我的功能里,用户可以管理订单信息,进行订单配送查询和查询配送完成的订单。我的功能实现界面如下图5.8所示:
3.3商家权限的功能实现
管理员可以管理菜品分类、菜品信息、订单信息、用户信息、商家信息、配送员信息等。管理员权限的功能实现界面如下图5.10所示:
四、部分核心代码
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.PeisongwanchengEntity;
import com.entity.view.PeisongwanchengView;
import com.service.PeisongwanchengService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;
import java.io.IOException;
/**
* 配送完成
* 后端接口
* @author
* @email
* @date 2022-04-16 17:23:54
*/
@RestController
@RequestMapping("/peisongwancheng")
public class PeisongwanchengController {
@Autowired
private PeisongwanchengService peisongwanchengService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,PeisongwanchengEntity peisongwancheng,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("shangjia")) {
peisongwancheng.setShangjiazhanghao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("yonghu")) {
peisongwancheng.setYonghuzhanghao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("peisongyuan")) {
peisongwancheng.setPeisongyuanzhanghao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<PeisongwanchengEntity> ew = new EntityWrapper<PeisongwanchengEntity>();
PageUtils page = peisongwanchengService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, peisongwancheng), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,PeisongwanchengEntity peisongwancheng,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("shangjia")) {
peisongwancheng.setShangjiazhanghao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("yonghu")) {
peisongwancheng.setYonghuzhanghao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("peisongyuan")) {
peisongwancheng.setPeisongyuanzhanghao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<PeisongwanchengEntity> ew = new EntityWrapper<PeisongwanchengEntity>();
PageUtils page = peisongwanchengService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, peisongwancheng), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( PeisongwanchengEntity peisongwancheng){
EntityWrapper<PeisongwanchengEntity> ew = new EntityWrapper<PeisongwanchengEntity>();
ew.allEq(MPUtil.allEQMapPre( peisongwancheng, "peisongwancheng"));
return R.ok().put("data", peisongwanchengService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(PeisongwanchengEntity peisongwancheng){
EntityWrapper< PeisongwanchengEntity> ew = new EntityWrapper< PeisongwanchengEntity>();
ew.allEq(MPUtil.allEQMapPre( peisongwancheng, "peisongwancheng"));
PeisongwanchengView peisongwanchengView = peisongwanchengService.selectView(ew);
return R.ok("查询配送完成成功").put("data", peisongwanchengView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
PeisongwanchengEntity peisongwancheng = peisongwanchengService.selectById(id);
return R.ok().put("data", peisongwancheng);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
PeisongwanchengEntity peisongwancheng = peisongwanchengService.selectById(id);
return R.ok().put("data", peisongwancheng);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody PeisongwanchengEntity peisongwancheng, HttpServletRequest request){
peisongwancheng.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(peisongwancheng);
peisongwanchengService.insert(peisongwancheng);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody PeisongwanchengEntity peisongwancheng, HttpServletRequest request){
peisongwancheng.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(peisongwancheng);
peisongwancheng.setUserid((Long)request.getSession().getAttribute("userId"));
peisongwanchengService.insert(peisongwancheng);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody PeisongwanchengEntity peisongwancheng, HttpServletRequest request){
//ValidatorUtils.validateEntity(peisongwancheng);
peisongwanchengService.updateById(peisongwancheng);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
peisongwanchengService.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<PeisongwanchengEntity> wrapper = new EntityWrapper<PeisongwanchengEntity>();
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("shangjia")) {
wrapper.eq("shangjiazhanghao", (String)request.getSession().getAttribute("username"));
}
if(tableName.equals("yonghu")) {
wrapper.eq("yonghuzhanghao", (String)request.getSession().getAttribute("username"));
}
if(tableName.equals("peisongyuan")) {
wrapper.eq("peisongyuanzhanghao", (String)request.getSession().getAttribute("username"));
}
int count = peisongwanchengService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微信联系我。