基于SpringBoot+vue的火车订票管理系统设计与实现

 博主介绍: 

大家好,我是一名在Java圈混迹十余年的程序员,精通Java编程语言,同时也熟练掌握微信小程序、Python和Android等技术,能够为大家提供全方位的技术支持和交流。
我擅长在JavaWeb、SSH、SSM、SpringBoot等框架下进行项目开发,具有丰富的项目经验和开发技能。我的代码风格规范、优美、易读性强,同时也注重性能优化、代码重构等方面的实践和经验总结。
我有丰富的成品Java毕设项目经验,能够为学生提供各类个性化的开题框架和实际运作方案。同时我也提供相关的学习资料、程序开发、技术解答、代码讲解、文档报告等专业服务。

文末获取源码联系

 精彩专栏推荐订阅 不然下次找不到哟

Java项目精品实战案例(300套)

火车订票管理系统源码下载地址:

https://download.csdn.net/download/weixin_54828627/87701063

一、前言介绍

本论文主要论述了如何使用JAVA语言开发一个火车订票管理系统 ,本系统将严格按照软件开发流程进行各个阶段的工作,采用B/S架构,面向对象编程思想进行项目开发。在引言中,作者将论述火车订票管理系统的当前背景以及系统开发的目的,后续章节将严格按照软件开发流程,对系统进行各个阶段分析设计。

二、主要技术

技术名 作用
SpringBoot 后端框架
Vue 前端框架
MySQL 数据库

三、系统设计(部分)

4.1、主要功能模块设计         

基于SpringBoot+vue的火车订票管理系统设计与实现_第1张图片

4.2、登录模块顺序设计

基于SpringBoot+vue的火车订票管理系统设计与实现_第2张图片

四、数据库设计(部分)

本火车订票管理系统采用的是MYSQL数据库,数据存储快,因为火车订票管理系统 ,主要的就是对信息的管理,信息内容比较多,这就需要好好的设计一个好的数据库,分类要清楚,不能添加信息的时候,造成信息太过混乱,设计好的数据库首先就需要先把各个实体之间的关系表达明确,系统的E-R图如下图所示:

1、用户信息实体图如图4-5所示:

基于SpringBoot+vue的火车订票管理系统设计与实现_第3张图片

图4-5 用户信息实体图

2、车次信息管理实体图如图4-6所示:

基于SpringBoot+vue的火车订票管理系统设计与实现_第4张图片

 图4-6 车次信息管理实体图

五、运行截图

5.1、前台首页功能模块

火车订票管理系统 ,在系统首页可以查看首页、车次信息、火车资讯、个人中心、后台管理等内容,如图5-1所示。

基于SpringBoot+vue的火车订票管理系统设计与实现_第5张图片

图5-1前台首页功能界面图  

5.1.1、登录、用户注册

图5-2登录、用户注册界面图

5.1.2、车次信息

基于SpringBoot+vue的火车订票管理系统设计与实现_第6张图片

图5-3车次信息界面图

5.2、管理员功能模块

5.2.1、管理员登录

图5-4管理员登录界面图

管理员登录进入火车订票管理系统可以查看首页、个人中心、用户管理、车型信息管理、车次信息管理、购票订单管理、改签订单管理、退票订单管理、系统管理等信息。

5.2.2、个人信息

基于SpringBoot+vue的火车订票管理系统设计与实现_第7张图片

图5-5个人信息界面图

5.2.3、用户管理

基于SpringBoot+vue的火车订票管理系统设计与实现_第8张图片

图5-6用户管理界面图

5.2.4、车型信息管理

基于SpringBoot+vue的火车订票管理系统设计与实现_第9张图片

图5-7车型信息管理界面图

5.2.5、车次信息管理

基于SpringBoot+vue的火车订票管理系统设计与实现_第10张图片

图5-8车次信息管理界面图

5.2.6、购票订单管理

基于SpringBoot+vue的火车订票管理系统设计与实现_第11张图片

图5-9购票订单管理界面图

5.2.7、改签订单管理

基于SpringBoot+vue的火车订票管理系统设计与实现_第12张图片

图5-10改签订单管理界面图

5.2.8、轮播图

基于SpringBoot+vue的火车订票管理系统设计与实现_第13张图片

图5-11轮播图管理界面图

5.3、用户功能模

用户登录进入火车订票管理系统可以查看首页、个人中心、购票订单管理、改签订单管理、退票订单管理等内容。

5.3.1、个人中心

基于SpringBoot+vue的火车订票管理系统设计与实现_第14张图片

图5-12个人中心界面图

5.3.2、个人信息

基于SpringBoot+vue的火车订票管理系统设计与实现_第15张图片

图5-13个人信息界面图

5.3.3、改签订单

基于SpringBoot+vue的火车订票管理系统设计与实现_第16张图片

图5-14改签订单管理界面图

六、代码参考

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.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.ChecixinxiEntity;
import com.entity.view.ChecixinxiView;

import com.service.ChecixinxiService;
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-02-27 11:45:54
 */
@RestController
@RequestMapping("/checixinxi")
public class ChecixinxiController {
    @Autowired
    private ChecixinxiService checixinxiService;
    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map params,ChecixinxiEntity checixinxi, HttpServletRequest request){
        EntityWrapper ew = new EntityWrapper();
		PageUtils page = checixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, checixinxi), params), params));

        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
	@IgnoreAuth
    @RequestMapping("/list")
    public R list(@RequestParam Map params,ChecixinxiEntity checixinxi, HttpServletRequest request){
        EntityWrapper ew = new EntityWrapper();
		PageUtils page = checixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, checixinxi), params), params));
        return R.ok().put("data", page);
    }

	/**
     * 列表
     */
    @RequestMapping("/lists")
    public R list( ChecixinxiEntity checixinxi){
       	EntityWrapper ew = new EntityWrapper();
      	ew.allEq(MPUtil.allEQMapPre( checixinxi, "checixinxi")); 
        return R.ok().put("data", checixinxiService.selectListView(ew));
    }

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(ChecixinxiEntity checixinxi){
        EntityWrapper< ChecixinxiEntity> ew = new EntityWrapper< ChecixinxiEntity>();
 		ew.allEq(MPUtil.allEQMapPre( checixinxi, "checixinxi")); 
		ChecixinxiView checixinxiView =  checixinxiService.selectView(ew);
		return R.ok("查询车次信息成功").put("data", checixinxiView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        ChecixinxiEntity checixinxi = checixinxiService.selectById(id);
        return R.ok().put("data", checixinxi);
    }

    /**
     * 前端详情
     */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id){
        ChecixinxiEntity checixinxi = checixinxiService.selectById(id);
        return R.ok().put("data", checixinxi);
    }
    



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody ChecixinxiEntity checixinxi, HttpServletRequest request){
    	checixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(checixinxi);
        checixinxiService.insert(checixinxi);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody ChecixinxiEntity checixinxi, HttpServletRequest request){
    	checixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(checixinxi);
        checixinxiService.insert(checixinxi);
        return R.ok();
    }

    /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody ChecixinxiEntity checixinxi, HttpServletRequest request){
        //ValidatorUtils.validateEntity(checixinxi);
        checixinxiService.updateById(checixinxi);//全部更新
        return R.ok();
    }
    

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        checixinxiService.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 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 wrapper = new EntityWrapper();
		if(map.get("remindstart")!=null) {
			wrapper.ge(columnName, map.get("remindstart"));
		}
		if(map.get("remindend")!=null) {
			wrapper.le(columnName, map.get("remindend"));
		}


		int count = checixinxiService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	


}

七、技术交流

大家点赞、收藏、关注、评论啦 、查看文章结尾获取联系方式

精彩专栏推荐订阅:下方专栏

Java项目精品实战案例(300套)

​​​

你可能感兴趣的:(java精品项目,java,spring,boot,vue.js,大学生项目实战,课程设计)