自学内容网 自学内容网

微信小程序毕业设计-自驾游拼团系统项目开发实战(附源码+论文)

大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。

💞当前专栏:微信小程序毕业设计

精彩专栏推荐👇🏻👇🏻👇🏻

🎀 Python毕业设计
🌎Java毕业设计

开发运行环境

①前端:微信小程序开发工具

② 后端:Java

  • 框架:ssm
  • JDK版本:JDK1.8
  • 服务器:tomcat7
  • 数据库:mysql 5.7
  • 数据库工具:Navicat12
  • 开发软件:eclipse/myeclipse/idea
  • Maven包:Maven3.3.9
  • 浏览器:谷歌浏览器

源码下载地址:

https://download.csdn.net/download/2301_76953549/89227744

论文目录

【如需全文请按文末获取联系】
在这里插入图片描述
在这里插入图片描述

一、项目简介

本系统实现了旅游的拼团,包括前台和后台两部分。在前台展示旅游景点、拼团信息、论坛。用户注册登录后可以参与拼团和了解景点信息以及发布帖子和评论,发起人登录后可以发起拼团和管理拼团订单。在后台展示个人中心管理、用户管理、发起人管理、景点管理、分类管理、拼团旅游管理、拼团订单管理、评论信息管理和论坛管理、系统管理。本系统实现了旅游拼团的网上参与,帮助想要旅游的用户预约拼团,同时帮助管理员管理订单信息和景点信息等。

二、系统设计

2.1软件功能模块设计

本系统采用前台用户、发起人操作,后台管理员操作的方式进行设计,用户在前台需要注册登录,注册登录后可以浏览资讯信息、旅游拼团信息、旅游景点信息,然后参团和发布帖子等。管理员负责前台信息的更新管理以及用户信息的管理。发起人负责发起拼团等。本系统采用小程序模式进行功能结构设计,本系统的功能结构图如下图4.1所示:
在这里插入图片描述

2.2数据库设计

(1)用户为本系统的主要使用人员,用户的属性包括姓名、年龄、性别等。用户ER图如下图4.2所示:
在这里插入图片描述

(2)景点信息为管理员管理的核心数据,景点信息可以帮助用户买到需要的旅游景点门票。景点信息ER图如下图4.3所示:
在这里插入图片描述
(4)参团信息为用户参与拼团后产生的,发起人可以审核参团,参团信息的ER图如下图4.5所示:
在这里插入图片描述
(6)本系统的实体关系ER图如下图4.8所示:
在这里插入图片描述

三、系统项目部分截图

3.1管理员权限的功能实现

个人中心管理功能的界面实现
管理员可以管理个人资料和密码。管理员修改密码的实现界面如下图5.2所示:
在这里插入图片描述
拼团旅游管理功能的实现界面
本功能可以实现拼团旅游的更新管理,拼团旅游可以使用户参团。管理员查询拼团旅游功能的实现界面如下图5.4所示:
在这里插入图片描述
景点管理功能的界面实现
管理员负责旅游景点信息的更新和调整,准确、及时的旅游景点信息才可以使用户更好的选择旅游地。管理员查询旅游景点信息的实现界面如下图5.8所示:
在这里插入图片描述

3.2前台界面的实现

在前台界面里的主要使用人员为用户、发起人,游客可以通过注册成为用户和发起人,在前台里展示的信息有资讯信息、旅游景点信息、论坛信息等。前台界面的实现效果如下图5.10所示:
在这里插入图片描述
发起拼团功能的实现界面
发起人填写具体的资料后就可以实现拼团的发起。发起拼团功能的实现界面如下图5.11所示:

在这里插入图片描述
我的功能界面实现
我的功能里可以管理参团信息、拼团订单、评价信息、收藏信息、帖子信息、拼团旅游等。我的功能实现界面如下图5.13所示:
在这里插入图片描述

四、部分核心代码

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 java.io.IOException;

import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
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.PintuandingdanEntity;
import com.entity.view.PintuandingdanView;

import com.service.PintuandingdanService;
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 2022-05-11 10:38:39
 */
@RestController
@RequestMapping("/pintuandingdan")
public class PintuandingdanController {
    @Autowired
    private PintuandingdanService pintuandingdanService;



    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params,PintuandingdanEntity pintuandingdan, 
HttpServletRequest request){

String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("faqiren")) {
pintuandingdan.setFaqizhanghao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("yonghu")) {
pintuandingdan.setZhanghao((String)request.getSession().getAttribute("username"));
}
        EntityWrapper<PintuandingdanEntity> ew = new EntityWrapper<PintuandingdanEntity>();
PageUtils page = pintuandingdanService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, pintuandingdan), params), params));
        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params,PintuandingdanEntity pintuandingdan, 
HttpServletRequest request){

String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("faqiren")) {
pintuandingdan.setFaqizhanghao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("yonghu")) {
pintuandingdan.setZhanghao((String)request.getSession().getAttribute("username"));
}
        EntityWrapper<PintuandingdanEntity> ew = new EntityWrapper<PintuandingdanEntity>();
PageUtils page = pintuandingdanService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, pintuandingdan), params), params));
        return R.ok().put("data", page);
    }

/**
     * 列表
     */
    @RequestMapping("/lists")
    public R list( PintuandingdanEntity pintuandingdan){
       EntityWrapper<PintuandingdanEntity> ew = new EntityWrapper<PintuandingdanEntity>();
      ew.allEq(MPUtil.allEQMapPre( pintuandingdan, "pintuandingdan")); 
        return R.ok().put("data", pintuandingdanService.selectListView(ew));
    }

 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(PintuandingdanEntity pintuandingdan){
        EntityWrapper< PintuandingdanEntity> ew = new EntityWrapper< PintuandingdanEntity>();
 ew.allEq(MPUtil.allEQMapPre( pintuandingdan, "pintuandingdan")); 
PintuandingdanView pintuandingdanView =  pintuandingdanService.selectView(ew);
return R.ok("查询拼团订单成功").put("data", pintuandingdanView);
    }

    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        PintuandingdanEntity pintuandingdan = pintuandingdanService.selectById(id);
        return R.ok().put("data", pintuandingdan);
    }

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



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody PintuandingdanEntity pintuandingdan, HttpServletRequest request){
    pintuandingdan.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    //ValidatorUtils.validateEntity(pintuandingdan);

        pintuandingdanService.insert(pintuandingdan);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody PintuandingdanEntity pintuandingdan, HttpServletRequest request){
    pintuandingdan.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    //ValidatorUtils.validateEntity(pintuandingdan);
    pintuandingdan.setUserid((Long)request.getSession().getAttribute("userId"));

        pintuandingdanService.insert(pintuandingdan);
        return R.ok();
    }

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

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        pintuandingdanService.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<PintuandingdanEntity> wrapper = new EntityWrapper<PintuandingdanEntity>();
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("faqiren")) {
wrapper.eq("faqizhanghao", (String)request.getSession().getAttribute("username"));
}
if(tableName.equals("yonghu")) {
wrapper.eq("zhanghao", (String)request.getSession().getAttribute("username"));
}

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








}

五、获取源码或论文

如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。


原文地址:https://blog.csdn.net/2301_77929081/article/details/140559611

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!