当前位置:   article > 正文

Springboot+vue项目火车订票管理系统_基于 springboot 的火车订票管理系统源码

基于 springboot 的火车订票管理系统源码

文末获取源码

开发语言:Java

开发工具:IDEA /Eclipse

数据库:MYSQL5.7

应用服务:Tomcat7/Tomcat8

使用框架:springboot+vue

JDK版本:jdk1.8

火车订票管理系统的主要使用者分为管理员和用户,实现功能包括管理员:首页、个人中心、用户管理、车型信息管理、车次信息管理、购票订单管理、改签订单管理、退票订单管理、系统管理,用户:首页、个人中心、购票订单管理、改签订单管理、退票订单管理,前台首页;首页、车次信息、火车资讯、个人中心、后台管理等功能。

数据库设计

一个好的数据库可以关系到程序开发的优劣,数据库设计离不开表结构的设计,还有表与表之间的联系,以及系统开发需要设计的数据表内容等信息。在进行数据库设计期间,要结合实际情况来对数据库进行针对性的开发设计

 数据库E-R图设计

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

1用户信息实体图如图

2、车次信息管理实体图如图 

3、车型信息管理实体图如图

 

系统详细设计 

前台首页功能模块

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

登录、用户注册,在用户注册页面可以填写用户名、密码、姓名、性别、头像、身份证、手机等信息进行注册,如图 

车次信息,在车次信息页面通过填写车次名称、火车名称、车牌、图片、起点站、终点站、途经、日期、出发时间、时长、座位类型、价格、票数等信息。如图 

管理员功能模块

管理员登录界面图 

个人信息界面图

 

用户管理界面图

 

车型信息管理界面图

 

车次信息管理界面图

 

用户功能模块

个人中心界面图

 

 个人信息界面图

改签订单管理界面图

 

部分核心代码: 

  1. package com.controller;
  2. import java.text.SimpleDateFormat;
  3. import java.util.ArrayList;
  4. import java.util.Arrays;
  5. import java.util.Calendar;
  6. import java.util.Map;
  7. import java.util.HashMap;
  8. import java.util.Iterator;
  9. import java.util.Date;
  10. import java.util.List;
  11. import javax.servlet.http.HttpServletRequest;
  12. import com.utils.ValidatorUtils;
  13. import org.apache.commons.lang3.StringUtils;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.web.bind.annotation.PathVariable;
  16. import org.springframework.web.bind.annotation.RequestBody;
  17. import org.springframework.web.bind.annotation.RequestMapping;
  18. import org.springframework.web.bind.annotation.RequestParam;
  19. import org.springframework.web.bind.annotation.RestController;
  20. import com.baomidou.mybatisplus.mapper.EntityWrapper;
  21. import com.baomidou.mybatisplus.mapper.Wrapper;
  22. import com.annotation.IgnoreAuth;
  23. import com.entity.ChecixinxiEntity;
  24. import com.entity.view.ChecixinxiView;
  25. import com.service.ChecixinxiService;
  26. import com.service.TokenService;
  27. import com.utils.PageUtils;
  28. import com.utils.R;
  29. import com.utils.MD5Util;
  30. import com.utils.MPUtil;
  31. import com.utils.CommonUtil;
  32. /**
  33. * 车次信息
  34. * 后端接口
  35. * @author
  36. * @email
  37. * @date 2021-02-27 11:45:54
  38. */
  39. @RestController
  40. @RequestMapping("/checixinxi")
  41. public class ChecixinxiController {
  42. @Autowired
  43. private ChecixinxiService checixinxiService;
  44. /**
  45. * 后端列表
  46. */
  47. @RequestMapping("/page")
  48. public R page(@RequestParam Map<String, Object> params,ChecixinxiEntity checixinxi, HttpServletRequest request){
  49. EntityWrapper<ChecixinxiEntity> ew = new EntityWrapper<ChecixinxiEntity>();
  50. PageUtils page = checixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, checixinxi), params), params));
  51. return R.ok().put("data", page);
  52. }
  53. /**
  54. * 前端列表
  55. */
  56. @IgnoreAuth
  57. @RequestMapping("/list")
  58. public R list(@RequestParam Map<String, Object> params,ChecixinxiEntity checixinxi, HttpServletRequest request){
  59. EntityWrapper<ChecixinxiEntity> ew = new EntityWrapper<ChecixinxiEntity>();
  60. PageUtils page = checixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, checixinxi), params), params));
  61. return R.ok().put("data", page);
  62. }
  63. /**
  64. * 列表
  65. */
  66. @RequestMapping("/lists")
  67. public R list( ChecixinxiEntity checixinxi){
  68. EntityWrapper<ChecixinxiEntity> ew = new EntityWrapper<ChecixinxiEntity>();
  69. ew.allEq(MPUtil.allEQMapPre( checixinxi, "checixinxi"));
  70. return R.ok().put("data", checixinxiService.selectListView(ew));
  71. }
  72. /**
  73. * 查询
  74. */
  75. @RequestMapping("/query")
  76. public R query(ChecixinxiEntity checixinxi){
  77. EntityWrapper< ChecixinxiEntity> ew = new EntityWrapper< ChecixinxiEntity>();
  78. ew.allEq(MPUtil.allEQMapPre( checixinxi, "checixinxi"));
  79. ChecixinxiView checixinxiView = checixinxiService.selectView(ew);
  80. return R.ok("查询车次信息成功").put("data", checixinxiView);
  81. }
  82. /**
  83. * 后端详情
  84. */
  85. @RequestMapping("/info/{id}")
  86. public R info(@PathVariable("id") Long id){
  87. ChecixinxiEntity checixinxi = checixinxiService.selectById(id);
  88. return R.ok().put("data", checixinxi);
  89. }
  90. /**
  91. * 前端详情
  92. */
  93. @RequestMapping("/detail/{id}")
  94. public R detail(@PathVariable("id") Long id){
  95. ChecixinxiEntity checixinxi = checixinxiService.selectById(id);
  96. return R.ok().put("data", checixinxi);
  97. }
  98. /**
  99. * 后端保存
  100. */
  101. @RequestMapping("/save")
  102. public R save(@RequestBody ChecixinxiEntity checixinxi, HttpServletRequest request){
  103. checixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
  104. //ValidatorUtils.validateEntity(checixinxi);
  105. checixinxiService.insert(checixinxi);
  106. return R.ok();
  107. }
  108. /**
  109. * 前端保存
  110. */
  111. @RequestMapping("/add")
  112. public R add(@RequestBody ChecixinxiEntity checixinxi, HttpServletRequest request){
  113. checixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
  114. //ValidatorUtils.validateEntity(checixinxi);
  115. checixinxiService.insert(checixinxi);
  116. return R.ok();
  117. }
  118. /**
  119. * 修改
  120. */
  121. @RequestMapping("/update")
  122. public R update(@RequestBody ChecixinxiEntity checixinxi, HttpServletRequest request){
  123. //ValidatorUtils.validateEntity(checixinxi);
  124. checixinxiService.updateById(checixinxi);//全部更新
  125. return R.ok();
  126. }
  127. /**
  128. * 删除
  129. */
  130. @RequestMapping("/delete")
  131. public R delete(@RequestBody Long[] ids){
  132. checixinxiService.deleteBatchIds(Arrays.asList(ids));
  133. return R.ok();
  134. }
  135. /**
  136. * 提醒接口
  137. */
  138. @RequestMapping("/remind/{columnName}/{type}")
  139. public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
  140. @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
  141. map.put("column", columnName);
  142. map.put("type", type);
  143. if(type.equals("2")) {
  144. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
  145. Calendar c = Calendar.getInstance();
  146. Date remindStartDate = null;
  147. Date remindEndDate = null;
  148. if(map.get("remindstart")!=null) {
  149. Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
  150. c.setTime(new Date());
  151. c.add(Calendar.DAY_OF_MONTH,remindStart);
  152. remindStartDate = c.getTime();
  153. map.put("remindstart", sdf.format(remindStartDate));
  154. }
  155. if(map.get("remindend")!=null) {
  156. Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
  157. c.setTime(new Date());
  158. c.add(Calendar.DAY_OF_MONTH,remindEnd);
  159. remindEndDate = c.getTime();
  160. map.put("remindend", sdf.format(remindEndDate));
  161. }
  162. }
  163. Wrapper<ChecixinxiEntity> wrapper = new EntityWrapper<ChecixinxiEntity>();
  164. if(map.get("remindstart")!=null) {
  165. wrapper.ge(columnName, map.get("remindstart"));
  166. }
  167. if(map.get("remindend")!=null) {
  168. wrapper.le(columnName, map.get("remindend"));
  169. }
  170. int count = checixinxiService.selectCount(wrapper);
  171. return R.ok().put("count", count);
  172. }
  173. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/155178?site
推荐阅读
相关标签
  

闽ICP备14008679号