springboot294基于java的火车票订票系统的设计与实现


博主介绍:专注于Java(springboot ssm 等开发框架) vue  .net  php phython node.js    uniapp 微信小程序 等诸多技术领域和毕业项目实战、企业信息化系统建设,从业十五余年开发设计教学工作
☆☆☆ 精彩专栏推荐订阅☆☆☆☆☆不然下次找不到哟
我的博客空间发布了2000+毕设题目 方便大家学习使用
感兴趣的可以先收藏起来,还有大家在毕设选题,项目以及论文编写等相关问题都可以给我留言咨询,希望帮助更多的人
文末下方有源码获取地址

4.2功能结构设计

为了让系统的编码可以顺利进行,特意对本系统功能进行细分设计,设计的系统功能结构见下图。

图4.1 系统功能结构图

4.3 数据库设计

4.3.1 数据库概念设计

4.3.2 数据库物理设计

表4.1车次信息表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

checi_name

String

车次标题

3

checi_photo

String

火车照片

4

checi_types

Integer

火车类型

5

checi_new_money

BigDecimal

现价

6

checi_chufadi

String

出发地

7

checi_mudidi

String

目的地

8

checi_time

Date

出发时间

9

section_number

Integer

车厢

10

zuowei_number

Integer

座位

11

shangxia_types

Integer

是否上架

12

checi_delete

Integer

逻辑删除

13

checi_content

String

经停站、到达时间详情

14

create_time

Date

创建时间

表4.2购票订单表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

checi_order_uuid_number

String

订单号

3

checi_id

Integer

车次

4

yonghu_id

Integer

会员

5

checi_order_true_price

BigDecimal

实付价格

6

checi_order_types

Integer

订单类型

7

buy_section_number

Integer

车厢

8

buy_zuowei_number

String

购买的座位

9

buy_zuowei_time

Date

订购日期

10

insert_time

Date

订单创建时间

11

create_time

Date

创建时间

表4.3字典表表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

dic_code

String

字段

3

dic_name

String

字段名

4

code_index

Integer

编码

5

index_name

String

编码名字

6

super_id

Integer

父字段id

7

beizhu

String

备注

8

create_time

Date

创建时间

表4.4留言版表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

yonghu_id

Integer

会员

3

liuyan_name

String

留言标题

4

liuyan_text

String

留言内容

5

insert_time

Date

留言时间

6

reply_text

String

回复内容

7

update_time

Date

回复时间

8

create_time

Date

创建时间

表4.5会员表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

yonghu_name

String

会员姓名

3

yonghu_photo

String

头像

4

yonghu_phone

String

会员手机号

5

yonghu_id_number

String

会员身份证号

6

new_money

BigDecimal

余额

7

yonghu_delete

Integer

假删

8

create_time

Date

创建时间

表4.6用户表表

序号

列名

数据类型

说明

允许空

1

Id

Int

id

2

username

String

用户名

3

password

String

密码

4

role

String

角色

5

addtime

Date

新增时间


5 系统实现

这个环节需要使用前面的设计方案,包括对系统模块的设计,还有对程序后台的数据支持的数据库的设计等。不过这部分内容还是强调系统编码人员的开发能力,要把前面设计的内容通过编码的形式以一个完整的,可以运行的系统呈现出来。

功能模块的实现

5.1会员信息管理

如图5.1显示的就是会员信息管理页面,此页面提供给管理员的功能有:会员信息的查询管理,可以删除会员信息、修改会员信息、新增会员信息,

还进行了对用户名称的模糊查询的条件

图5.1 会员信息管理页面

5.2 车次信息管理

如图5.2显示的就是车次信息管理页面,此页面提供给管理员的功能有:查看已发布的车次信息数据,修改车次信息,车次信息作废,即可删除,还进行了对车次信息名称的模糊查询 车次信息信息的类型查询等等一些条件。

图5.2 车次信息管理页面


package com.controller;

import java.io.File;
import java.math.BigDecimal;
import java.net.URL;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.*;
import java.lang.reflect.InvocationTargetException;

import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.*;
import com.entity.view.*;
import com.service.*;
import com.utils.PageUtils;
import com.utils.R;
import com.alibaba.fastjson.*;

/**
 * 车次信息
 * 后端接口
 * @author
 * @email
*/
@RestController
@Controller
@RequestMapping("/checi")
public class CheciController {
    private static final Logger logger = LoggerFactory.getLogger(CheciController.class);

    @Autowired
    private CheciService checiService;


    @Autowired
    private TokenService tokenService;
    @Autowired
    private DictionaryService dictionaryService;

    //级联表service

    @Autowired
    private YonghuService yonghuService;


    /**
    * 后端列表
    */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
        logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(false)
            return R.error(511,"永不会进入");
        else if("会员".equals(role))
            params.put("yonghuId",request.getSession().getAttribute("userId"));
        params.put("checiDeleteStart",1);params.put("checiDeleteEnd",1);
        if(params.get("orderBy")==null || params.get("orderBy")==""){
            params.put("orderBy","id");
        }
        PageUtils page = checiService.queryPage(params);

        //字典表数据转换
        List<CheciView> list =(List<CheciView>)page.getList();
        for(CheciView c:list){
            //修改对应字典表字段
            dictionaryService.dictionaryConvert(c, request);
        }
        return R.ok().put("data", page);
    }

    /**
    * 后端详情
    */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id, HttpServletRequest request){
        logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
        CheciEntity checi = checiService.selectById(id);
        if(checi !=null){
            //entity转view
            CheciView view = new CheciView();
            BeanUtils.copyProperties( checi , view );//把实体数据重构到view中

            //修改对应字典表字段
            dictionaryService.dictionaryConvert(view, request);
            return R.ok().put("data", view);
        }else {
            return R.error(511,"查不到数据");
        }

    }

    /**
    * 后端保存
    */
    @RequestMapping("/save")
    public R save(@RequestBody CheciEntity checi, HttpServletRequest request){
        logger.debug("save方法:,,Controller:{},,checi:{}",this.getClass().getName(),checi.toString());

        String role = String.valueOf(request.getSession().getAttribute("role"));
        if(false)
            return R.error(511,"永远不会进入");

        Wrapper<CheciEntity> queryWrapper = new EntityWrapper<CheciEntity>()
            .eq("checi_name", checi.getCheciName())
            .eq("checi_types", checi.getCheciTypes())
            .eq("checi_chufadi", checi.getCheciChufadi())
            .eq("checi_mudidi", checi.getCheciMudidi())
            .eq("section_number", checi.getSectionNumber())
            .eq("zuowei_number", checi.getZuoweiNumber())
            .eq("shangxia_types", checi.getShangxiaTypes())
            .eq("checi_delete", checi.getCheciDelete())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        CheciEntity checiEntity = checiService.selectOne(queryWrapper);
        if(checiEntity==null){
            checi.setShangxiaTypes(1);
            checi.setCheciDelete(1);
            checi.setCreateTime(new Date());
            checiService.insert(checi);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }

    /**
    * 后端修改
    */
    @RequestMapping("/update")
    public R update(@RequestBody CheciEntity checi, HttpServletRequest request){
        logger.debug("update方法:,,Controller:{},,checi:{}",this.getClass().getName(),checi.toString());

        String role = String.valueOf(request.getSession().getAttribute("role"));
//        if(false)
//            return R.error(511,"永远不会进入");
        //根据字段查询是否有相同数据
        Wrapper<CheciEntity> queryWrapper = new EntityWrapper<CheciEntity>()
            .notIn("id",checi.getId())
            .andNew()
            .eq("checi_name", checi.getCheciName())
            .eq("checi_types", checi.getCheciTypes())
            .eq("checi_chufadi", checi.getCheciChufadi())
            .eq("checi_mudidi", checi.getCheciMudidi())
            .eq("section_number", checi.getSectionNumber())
            .eq("zuowei_number", checi.getZuoweiNumber())
            .eq("shangxia_types", checi.getShangxiaTypes())
            .eq("checi_delete", checi.getCheciDelete())
            ;

        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        CheciEntity checiEntity = checiService.selectOne(queryWrapper);
        if("".equals(checi.getCheciPhoto()) || "null".equals(checi.getCheciPhoto())){
                checi.setCheciPhoto(null);
        }
        if(checiEntity==null){
            checiService.updateById(checi);//根据id更新
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }

    /**
    * 删除
    */
    @RequestMapping("/delete")
    public R delete(@RequestBody Integer[] ids){
        logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
        ArrayList<CheciEntity> list = new ArrayList<>();
        for(Integer id:ids){
            CheciEntity checiEntity = new CheciEntity();
            checiEntity.setId(id);
            checiEntity.setCheciDelete(2);
            list.add(checiEntity);
        }
        if(list != null && list.size() >0){
            checiService.updateBatchById(list);
        }
        return R.ok();
    }


    /**
     * 批量上传
     */
    @RequestMapping("/batchInsert")
    public R save( String fileName, HttpServletRequest request){
        logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);
        Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId")));
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        try {
            List<CheciEntity> checiList = new ArrayList<>();//上传的东西
            Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段
            Date date = new Date();
            int lastIndexOf = fileName.lastIndexOf(".");
            if(lastIndexOf == -1){
                return R.error(511,"该文件没有后缀");
            }else{
                String suffix = fileName.substring(lastIndexOf);
                if(!".xls".equals(suffix)){
                    return R.error(511,"只支持后缀为xls的excel文件");
                }else{
                    URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径
                    File file = new File(resource.getFile());
                    if(!file.exists()){
                        return R.error(511,"找不到上传文件,请联系管理员");
                    }else{
                        List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件
                        dataList.remove(0);//删除第一行,因为第一行是提示
                        for(List<String> data:dataList){
                            //循环
                            CheciEntity checiEntity = new CheciEntity();
//                            checiEntity.setCheciName(data.get(0));                    //车次标题 要改的
//                            checiEntity.setCheciPhoto("");//详情和图片
//                            checiEntity.setCheciTypes(Integer.valueOf(data.get(0)));   //火车类型 要改的
//                            checiEntity.setCheciNewMoney(data.get(0));                    //现价 要改的
//                            checiEntity.setCheciChufadi(data.get(0));                    //出发地 要改的
//                            checiEntity.setCheciMudidi(data.get(0));                    //目的地 要改的
//                            checiEntity.setCheciTime(sdf.parse(data.get(0)));          //出发时间 要改的
//                            checiEntity.setSectionNumber(Integer.valueOf(data.get(0)));   //车厢 要改的
//                            checiEntity.setZuoweiNumber(Integer.valueOf(data.get(0)));   //座位 要改的
//                            checiEntity.setShangxiaTypes(Integer.valueOf(data.get(0)));   //是否上架 要改的
//                            checiEntity.setCheciDelete(1);//逻辑删除字段
//                            checiEntity.setCheciContent("");//详情和图片
//                            checiEntity.setCreateTime(date);//时间
                            checiList.add(checiEntity);


                            //把要查询是否重复的字段放入map中
                        }

                        //查询是否重复
                        checiService.insertBatch(checiList);
                        return R.ok();
                    }
                }
            }
        }catch (Exception e){
            e.printStackTrace();
            return R.error(511,"批量插入数据异常,请联系管理员");
        }
    }





    /**
    * 前端列表
    */
    @IgnoreAuth
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){
        logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));

        // 没有指定排序字段就默认id倒序
        if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){
            params.put("orderBy","id");
        }
        PageUtils page = checiService.queryPage(params);

        //字典表数据转换
        List<CheciView> list =(List<CheciView>)page.getList();
        for(CheciView c:list)
            dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段
        return R.ok().put("data", page);
    }

    /**
    * 前端详情
    */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id, HttpServletRequest request){
        logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
        CheciEntity checi = checiService.selectById(id);
            if(checi !=null){


                //entity转view
                CheciView view = new CheciView();
                BeanUtils.copyProperties( checi , view );//把实体数据重构到view中

                //修改对应字典表字段
                dictionaryService.dictionaryConvert(view, request);
                return R.ok().put("data", view);
            }else {
                return R.error(511,"查不到数据");
            }
    }


    /**
    * 前端保存
    */
    @RequestMapping("/add")
    public R add(@RequestBody CheciEntity checi, HttpServletRequest request){
        logger.debug("add方法:,,Controller:{},,checi:{}",this.getClass().getName(),checi.toString());
        Wrapper<CheciEntity> queryWrapper = new EntityWrapper<CheciEntity>()
            .eq("checi_name", checi.getCheciName())
            .eq("checi_types", checi.getCheciTypes())
            .eq("checi_chufadi", checi.getCheciChufadi())
            .eq("checi_mudidi", checi.getCheciMudidi())
            .eq("section_number", checi.getSectionNumber())
            .eq("zuowei_number", checi.getZuoweiNumber())
            .eq("shangxia_types", checi.getShangxiaTypes())
            .eq("checi_delete", checi.getCheciDelete())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        CheciEntity checiEntity = checiService.selectOne(queryWrapper);
        if(checiEntity==null){
            checi.setCheciDelete(1);
            checi.setCreateTime(new Date());
        checiService.insert(checi);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }


}

5.3订票订单管理

如图5.3显示的就是订票订单管理页面,此页面提供给管理员的功能有:根据订票订单进行条件查询,还可以对订票订单进行新增、修改、查询操作等等。

图5.3 订票订单管理页面

5.1留言板管理

如图5.4显示的就是留言板管理页面,此页面提供给管理员的功能有:根据留言板进行新增、修改、查询操作等等。

图5.4 留言板管理页面


大家点赞、收藏、关注、评论啦  其他的定制服务 商务合作  下方联系卡片↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 或者私信作者
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

翰文编程

你的鼓励 是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值