末尾获取源码
开发语言:nodejs
框架:Express
数据库:MySQL5.7
数据库工具:Navicat 11

开发软件:Hbuilder / VS code
浏览器:edge / 谷歌


目录

一、项目简介

二、系统功能

三、系统项目截图

3.1前台首页

3.2后台管理

四、核心代码

4.1登录相关

4.2文件上传

4.3封装


一、项目简介

在线跑腿管理系统利用网络沟通、计算机信息存储管理,有着与传统的方式所无法替代的优点。比如计算检索速度特别快、可靠性特别高、存储容量特别大、保密性特别好、可保存时间特别长、成本特别低等。在工作效率上,能够得到极大地提高,延伸至服务水平也会有好的收获,有了网络,在线跑腿管理系统的各方面的管理更加科学和系统,更加规范和简便。


二、系统功能

本在线跑腿管理系统主要包括三大功能模块,即用户功能模块和管理员功能模块、跑腿人模块、用户模块。

(1)管理员模块:系统中的核心用户是管理员,管理员登录后,通过管理员来管理后台系统。主要功能有:首页、个人中心、用户管理、跑腿管理、服务类型管理、服务信息管理、跑腿接单管理、订单完成管理、订单评价管理、系统管理。

(2)跑腿人:首页、个人中心、跑腿接单管理、订单完成管理、订单评价管理、在线交流管理。

(3)用户:首页、个人中心、服务信息管理、跑腿接单管理、订单完成管理、订单评价管理、在线交流管理。


三、系统项目截图

3.1前台首页

3.2后台管理


四、核心代码

4.1登录相关


package com.controller;import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.Map;import javax.servlet.http.HttpServletRequest;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
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.ResponseBody;
import org.springframework.web.bind.annotation.RestController;import com.annotation.IgnoreAuth;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.entity.TokenEntity;
import com.entity.UserEntity;
import com.service.TokenService;
import com.service.UserService;
import com.utils.CommonUtil;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.ValidatorUtils;/*** 登录相关*/
@RequestMapping("users")
@RestController
public class UserController{@Autowiredprivate UserService userService;@Autowiredprivate TokenService tokenService;/*** 登录*/@IgnoreAuth@PostMapping(value = "/login")public R login(String username, String password, String captcha, HttpServletRequest request) {UserEntity user = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", username));if(user==null || !user.getPassword().equals(password)) {return R.error("账号或密码不正确");}String token = tokenService.generateToken(user.getId(),username, "users", user.getRole());return R.ok().put("token", token);}/*** 注册*/@IgnoreAuth@PostMapping(value = "/register")public R register(@RequestBody UserEntity user){
//      ValidatorUtils.validateEntity(user);if(userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername())) !=null) {return R.error("用户已存在");}userService.insert(user);return R.ok();}/*** 退出*/@GetMapping(value = "logout")public R logout(HttpServletRequest request) {request.getSession().invalidate();return R.ok("退出成功");}/*** 密码重置*/@IgnoreAuth@RequestMapping(value = "/resetPass")public R resetPass(String username, HttpServletRequest request){UserEntity user = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", username));if(user==null) {return R.error("账号不存在");}user.setPassword("123456");userService.update(user,null);return R.ok("密码已重置为:123456");}/*** 列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,UserEntity user){EntityWrapper<UserEntity> ew = new EntityWrapper<UserEntity>();PageUtils page = userService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.allLike(ew, user), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/list")public R list( UserEntity user){EntityWrapper<UserEntity> ew = new EntityWrapper<UserEntity>();ew.allEq(MPUtil.allEQMapPre( user, "user")); return R.ok().put("data", userService.selectListView(ew));}/*** 信息*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") String id){UserEntity user = userService.selectById(id);return R.ok().put("data", user);}/*** 获取用户的session用户信息*/@RequestMapping("/session")public R getCurrUser(HttpServletRequest request){Long id = (Long)request.getSession().getAttribute("userId");UserEntity user = userService.selectById(id);return R.ok().put("data", user);}/*** 保存*/@PostMapping("/save")public R save(@RequestBody UserEntity user){
//      ValidatorUtils.validateEntity(user);if(userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername())) !=null) {return R.error("用户已存在");}userService.insert(user);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody UserEntity user){
//        ValidatorUtils.validateEntity(user);userService.updateById(user);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){userService.deleteBatchIds(Arrays.asList(ids));return R.ok();}
}

4.2文件上传

package com.controller;import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.UUID;import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.util.ResourceUtils;
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 org.springframework.web.multipart.MultipartFile;import com.annotation.IgnoreAuth;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.entity.ConfigEntity;
import com.entity.EIException;
import com.service.ConfigService;
import com.utils.R;/*** 上传文件映射表*/
@RestController
@RequestMapping("file")
@SuppressWarnings({"unchecked","rawtypes"})
public class FileController{@Autowiredprivate ConfigService configService;/*** 上传文件*/@RequestMapping("/upload")public R upload(@RequestParam("file") MultipartFile file,String type) throws Exception {if (file.isEmpty()) {throw new EIException("上传文件不能为空");}String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);File path = new File(ResourceUtils.getURL("classpath:static").getPath());if(!path.exists()) {path = new File("");}File upload = new File(path.getAbsolutePath(),"/upload/");if(!upload.exists()) {upload.mkdirs();}String fileName = new Date().getTime()+"."+fileExt;File dest = new File(upload.getAbsolutePath()+"/"+fileName);file.transferTo(dest);FileUtils.copyFile(dest, new File("C:\\Users\\Desktop\\jiadian\\springbootl7own\\src\\main\\resources\\static\\upload"+"/"+fileName));if(StringUtils.isNotBlank(type) && type.equals("1")) {ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));if(configEntity==null) {configEntity = new ConfigEntity();configEntity.setName("faceFile");configEntity.setValue(fileName);} else {configEntity.setValue(fileName);}configService.insertOrUpdate(configEntity);}return R.ok().put("file", fileName);}/*** 下载文件*/@IgnoreAuth@RequestMapping("/download")public ResponseEntity<byte[]> download(@RequestParam String fileName) {try {File path = new File(ResourceUtils.getURL("classpath:static").getPath());if(!path.exists()) {path = new File("");}File upload = new File(path.getAbsolutePath(),"/upload/");if(!upload.exists()) {upload.mkdirs();}File file = new File(upload.getAbsolutePath()+"/"+fileName);if(file.exists()){/*if(!fileService.canRead(file, SessionManager.getSessionUser())){getResponse().sendError(403);}*/HttpHeaders headers = new HttpHeaders();headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);    headers.setContentDispositionFormData("attachment", fileName);    return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.CREATED);}} catch (IOException e) {e.printStackTrace();}return new ResponseEntity<byte[]>(HttpStatus.INTERNAL_SERVER_ERROR);}}

4.3封装

package com.utils;import java.util.HashMap;
import java.util.Map;/*** 返回数据*/
public class R extends HashMap<String, Object> {private static final long serialVersionUID = 1L;public R() {put("code", 0);}public static R error() {return error(500, "未知异常,请联系管理员");}public static R error(String msg) {return error(500, msg);}public static R error(int code, String msg) {R r = new R();r.put("code", code);r.put("msg", msg);return r;}public static R ok(String msg) {R r = new R();r.put("msg", msg);return r;}public static R ok(Map<String, Object> map) {R r = new R();r.putAll(map);return r;}public static R ok() {return new R();}public R put(String key, Object value) {super.put(key, value);return this;}
}

基于nodejs的在线跑腿管理系统相关推荐

  1. 基于nodejs的在线跑腿系统-计算机毕业设计

    项目介绍  系统选用B/S模式,应用nodejs技术,MySQL为后台数据库.系统主要包括首页,个人中心,用户管理,跑腿管理,服务类型管理,服务信息管理,跑腿接单管理,订单完成管理,订单评价管理,系统 ...

  2. 基于SSM考试在线报名管理系统

    <基于SSM考试在线报名管理系统> 该项目采用技术jsp+CSS+JavaScript+mysql+mybatis+spring\springmvc.mysql数据库.项目含有源码.配套开 ...

  3. 基于JAVA计算机在线学习管理系统-计算机毕业设计源码+系统+mysql数据库+lw文档+部署

    基于JAVA计算机在线学习管理系统-计算机毕业设计源码+系统+mysql数据库+lw文档+部署 基于JAVA计算机在线学习管理系统-计算机毕业设计源码+系统+mysql数据库+lw文档+部署 本源码技 ...

  4. 基于安卓Android在线课程管理系统的设计(uniapp,SSM,MySQL)

    系统功能分析 本系统实现一个基于Android的在线课程管理系统,分为服务器端和客户端两种用户.服务器端可以在网站后台进行管理:用户通过手机端自由登录客户端平台进行管理.具体功能描述如下: 服务器端模 ...

  5. (php毕业设计)基于php学生在线考试管理系统

    基于php学生在线考试管理系统 学生在线考试管理系统是基于php编程语言,mysql数据库进行开发,本系统分为学生,教师,管理员三个角色,其中学生可以注册登陆系统,查看公告,查看试卷,在线考试,查看得 ...

  6. (php毕业设计)基于php用户在线投稿管理系统获取

    基于php用户在线投稿管理系统 用户在线投稿管理系统是基于php编程语言,mysql数据库开发的基于BS架构的系统,系统分为用户,管理员,审核人员三个角色,用户功能主要是查看专题,根据专题进行投稿,查 ...

  7. 基于spring的在线家教管理系统

    1.项目介绍 基于spring的在线家教管理系统2拥有三种角色 管理员:会员管理.教师管理.家教列表.发布家教需求.教师接单列表.辅导机构列表.试题列表等 教师:登录注册.个人信息修改.查看预约记录 ...

  8. 基于javaweb的在线健身房管理系统(java+springboot+jsp+html+mysql)

    基于javaweb的在线健身房管理系统(java+springboot+jsp+html+mysql) 运行环境 Java≥8.MySQL≥5.7 开发工具 eclipse/idea/myeclips ...

  9. 基于springboot的在线管理管理系统

    1.项目介绍 基于springboot的在线管理管理系统2拥有三种角色 管理员:用户管理.试卷分类管理.试题管理.添加试题.试题分类管理.考试管理.发布试卷.设置参加考试的学生.设置参加判卷的老师等 ...

最新文章

  1. 22.25在计算机中如何储存,浮点数在计算机中存储方式
  2. python3 url 编码 解码
  3. cpu,内核和逻辑处理器的关系
  4. C++ 术语(C++ Primer)
  5. 短信验证码“最佳实践”
  6. Serverless在大规模数据处理的实践
  7. 多通路fpga 通信_基于USB通信的FPGA高速数据采集系统研究
  8. AndroidStudio安卓原生开发_activity之间复杂对象类型的数据传递---Android原生开发工作笔记92
  9. PHP使用CURL使用问题
  10. win10去掉文件夹前面的复选框
  11. matlab画图(plot)命令。长期更新!
  12. linux hping3命令,Linux中hping3命令起什么作用呢?
  13. Web前端 ---入门教学
  14. 融云观察:壳壳语音新玩法,深挖语音社交市场
  15. 计算机工作原理--时钟概念
  16. 【python 监控报警】python自动发钉钉机器人报警
  17. 网站盈利有哪些模式?
  18. 打开网页时有些图片显示不出怎么办
  19. [学习笔记]ARM_DSP库——基础函数(相反数、偏移、移位、减法、比例因子)
  20. NFM(Neural Factorization Machines):模型原理及pytorch代码实现

热门文章

  1. 公司情况介绍及中远期规划
  2. JQ二级菜单选项卡,默认第一项,使用jquery实现方法。
  3. 基于图数据库的菜品推荐系统
  4. 阿里云短信服务使用_短信验证码本地测试
  5. 【VUE前进之路】插槽的使用
  6. pytorch 41 yolov8的无nsm后处理的onnxruntime部署方案
  7. afn原理 ios_iOS AFN实现原理
  8. 保研之旅1:与中科大通信方向老师的面谈
  9. Kotlin Jetpack 实战: Kotlin 基础 | 开发者说·DTalk
  10. c、c++ 常用API汇总