微信小程序-公共交通线路查询系统

1.技术介绍
java+ssm+mysql+mybatis+Vue+微信小程序
开发工具:eclipse或idea,微信开发者工具
2.主要功能说明:
1)用户
注册、登录、首页、首页信息、乘车安全、公交路线、导航、支付、乘车信息、用户诉求、反馈诉求
2)管理员
个人中心、用户管理、乘车安全管理、公交路线管理、乘车信息管理、用户诉求管理、反馈诉求管理、轮播图管理
3.部分代码展示

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.ChengchexinxiEntity;
import com.entity.view.ChengchexinxiView;

import com.service.ChengchexinxiService;
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-13 16:03:29
 */
@RestController
@RequestMapping("/chengchexinxi")
public class ChengchexinxiController {
    @Autowired
    private ChengchexinxiService chengchexinxiService;



    


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

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

		String tableName = request.getSession().getAttribute("tableName").toString();
		if(tableName.equals("yonghu")) {
			chengchexinxi.setYonghuzhanghao((String)request.getSession().getAttribute("username"));
		}
        EntityWrapper<ChengchexinxiEntity> ew = new EntityWrapper<ChengchexinxiEntity>();
		PageUtils page = chengchexinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, chengchexinxi), params), params));
        return R.ok().put("data", page);
    }

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

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(ChengchexinxiEntity chengchexinxi){
        EntityWrapper< ChengchexinxiEntity> ew = new EntityWrapper< ChengchexinxiEntity>();
 		ew.allEq(MPUtil.allEQMapPre( chengchexinxi, "chengchexinxi")); 
		ChengchexinxiView chengchexinxiView =  chengchexinxiService.selectView(ew);
		return R.ok("查询乘车信息成功").put("data", chengchexinxiView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        ChengchexinxiEntity chengchexinxi = chengchexinxiService.selectById(id);
        return R.ok().put("data", chengchexinxi);
    }

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



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

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

        chengchexinxiService.insert(chengchexinxi);
        return R.ok();
    }

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

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        chengchexinxiService.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<ChengchexinxiEntity> wrapper = new EntityWrapper<ChengchexinxiEntity>();
		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("yonghu")) {
			wrapper.eq("yonghuzhanghao", (String)request.getSession().getAttribute("username"));
		}

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







    /**
     * (按值统计)
     */
    @RequestMapping("/value/{xColumnName}/{yColumnName}")
    public R value(@PathVariable("yColumnName") String yColumnName, @PathVariable("xColumnName") String xColumnName,HttpServletRequest request) {
        Map<String, Object> params = new HashMap<String, Object>();
        params.put("xColumn", xColumnName);
        params.put("yColumn", yColumnName);
        EntityWrapper<ChengchexinxiEntity> ew = new EntityWrapper<ChengchexinxiEntity>();
        String tableName = request.getSession().getAttribute("tableName").toString();
        if(tableName.equals("yonghu")) {
            ew.eq("yonghuzhanghao", (String)request.getSession().getAttribute("username"));
        }
        List<Map<String, Object>> result = chengchexinxiService.selectValue(params, ew);
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        for(Map<String, Object> m : result) {
            for(String k : m.keySet()) {
                if(m.get(k) instanceof Date) {
                    m.put(k, sdf.format((Date)m.get(k)));
                }
            }
        }
        return R.ok().put("data", result);
    }

    /**
     * (按值统计)时间统计类型
     */
    @RequestMapping("/value/{xColumnName}/{yColumnName}/{timeStatType}")
    public R valueDay(@PathVariable("yColumnName") String yColumnName, @PathVariable("xColumnName") String xColumnName, @PathVariable("timeStatType") String timeStatType,HttpServletRequest request) {
        Map<String, Object> params = new HashMap<String, Object>();
        params.put("xColumn", xColumnName);
        params.put("yColumn", yColumnName);
        params.put("timeStatType", timeStatType);
        EntityWrapper<ChengchexinxiEntity> ew = new EntityWrapper<ChengchexinxiEntity>();
        String tableName = request.getSession().getAttribute("tableName").toString();
        if(tableName.equals("yonghu")) {
            ew.eq("yonghuzhanghao", (String)request.getSession().getAttribute("username"));
        }
        List<Map<String, Object>> result = chengchexinxiService.selectTimeStatValue(params, ew);
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        for(Map<String, Object> m : result) {
            for(String k : m.keySet()) {
                if(m.get(k) instanceof Date) {
                    m.put(k, sdf.format((Date)m.get(k)));
                }
            }
        }
        return R.ok().put("data", result);
    }

    /**
     * 分组统计
     */
    @RequestMapping("/group/{columnName}")
    public R group(@PathVariable("columnName") String columnName,HttpServletRequest request) {
        Map<String, Object> params = new HashMap<String, Object>();
        params.put("column", columnName);
        EntityWrapper<ChengchexinxiEntity> ew = new EntityWrapper<ChengchexinxiEntity>();
        String tableName = request.getSession().getAttribute("tableName").toString();
        if(tableName.equals("yonghu")) {
            ew.eq("yonghuzhanghao", (String)request.getSession().getAttribute("username"));
        }
        List<Map<String, Object>> result = chengchexinxiService.selectGroup(params, ew);
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        for(Map<String, Object> m : result) {
            for(String k : m.keySet()) {
                if(m.get(k) instanceof Date) {
                    m.put(k, sdf.format((Date)m.get(k)));
                }
            }
        }
        return R.ok().put("data", result);
    }
}

4.演示地址:
链接:https://pan.baidu.com/s/1chvwx0c6E3l6xJGiiJUe9w
提取码:ujpn

  • 0
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
基于微信小程序的公交信息在线查询系统是一款便捷实用的城市公交出行工具。该系统整合了城市公交线路、站点、实时公交到站信息等多种实用功能,帮助用户快速、准确地查询公交线路、站点以及实时到站信息,为城市居民提供了便捷的公交出行服务。该系统具有以下主要特点:1. 全面的公交信息查询功能:用户可以通过输入起始和目的地点,系统将自动规划出最优的公交线路,同时可通过公交线路查询站点列表、站点周边地图等功能,满足用户对公交信息的全方位查询需求。2. 实时公交到站信息:用户可查询实时公交到站信息,了解公交车辆的实时位置和预计到站时间,帮助用户合理安排出行时间,避免长时间等待。3. 个性化设置功能:用户可根据自身需求进行个性化设置,如收藏常用线路、站点,设置提醒功能等,提高公交出行的便利性和舒适度。4. 友好的用户界面和操作体验:系统设计简洁明了,操作简单易懂,用户可以快速上手,轻松查询所需的公交信息。5. 实用的辅助功能:系统还提供了公交站点周边地图、路线规划、交通资讯等实用辅助功能,帮助用户更好地了解城市交通情况,选择最佳出行方案。这款基于微信小程序的公交信息在线查询系统,为用户提供了一站式的公交出行服务,不仅方便了用户出行,也提高了城市公交系统的服务效率和信息透明度。随着城市交通的不断发展,相信该系统将成为城市居民出行的得力助手,为城市交通出行带来更多的便利和舒适。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值