大家好!我是职场程序猿,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:微信小程序毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发环境
①前端:微信小程序开发工具
② 后端:Java
框架:ssm
JDK版本:JDK1.8
服务器:tomcat7
数据库:mysql 5.7
数据库工具:Navicat12
开发软件:eclipse/myeclipse/idea
Maven包:Maven3.3.9
浏览器:谷歌浏览器
演示视频
前端:
weixin044消防隐患在线举报系统开发-微信端
后端:
weixin044消防隐患在线举报系统开发-服务端
原版高清演示视频-编号:044
https://pan.quark.cn/s/c0c9519df9d4
源码下载地址:
https://download.csdn.net/download/m0_46388260/89086905
LW目录
【如需全文请按文末获取联系】
目录
一、项目简介
消防隐患在线举报系统用户端要求在系统的安卓手机上可以运行,主要实现了管理端;首页、个人中心、用户管理、消防隐患举报管理、消防隐患分类管理、统计分类管理、处理结果管理、系统管理,用户端;首页、我的等主要功能模块的操作和管理。
二、系统设计
2.1软件功能模块设计
系统结构图,如图4-3所示:
2.2数据库设计
管理员信息属性图如图4-4所示。
用户管理实体属性图如图4-5所示。
消防隐患举报管理实体属性图如图4-6所示。
处理结果管理实体属性图如图4-7所示。
三、系统项目部分截图
3.1用户端功能模块
用户注册,在用户注册页面可以填写用户名、姓名、联系方式等信息,进行注册如图5-1所示。
用户登录,在用户登录页面填写账号、密码进行登录如图5-2所示。
用户登录到消防隐患在线举报系统可以查看首页、我的等内容,如图5-3所示。
在用户信息页面可以填写用户名、姓名、头像、性别、联系方式等信息,并可根据需要进行保存、退出登录,如图5-5所示。
在消防隐患举报页面可以查看用户名、姓名、联系方式、事件时间、事件描述、图片、事件地址等信息,并可根据需要对消防隐患举报进行提交,如图5-6所示。
3.2管理端功能界面
管理员通过填写用户名、密码、角色进行登录如图5-8所示。
用户管理,通过填写用户名、姓名、头像、性别、联系方式等信息进行详情、修改、删除操作,如图5-9所示。
消防隐患分类管理,通过填写分类等信息进行详情、修改、删除操作,如图5-11所示。
处理结果管理,通过填写用户名、姓名、联系方式、事件时间、事件描述、图片、事件地址、处理状态、处理详情等信息进行详情、修改、删除操作,如图5-13示。
该页面为轮播图管理界面。管理员可以在此页面进行首页轮播图的管理,通过新建操作可在轮播图中加入新的图片,还可以对以上传的图片进行修改操作,以及图片的删除操作,如图5-15所示。
四、部分核心代码
4.1 用户部分
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.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.TongjifenleiEntity;
import com.entity.view.TongjifenleiView;
import com.service.TongjifenleiService;
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-03-10 22:14:18
*/
@RestController
@RequestMapping("/tongjifenlei")
public class TongjifenleiController {
@Autowired
private TongjifenleiService tongjifenleiService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,TongjifenleiEntity tongjifenlei,
HttpServletRequest request){
EntityWrapper<TongjifenleiEntity> ew = new EntityWrapper<TongjifenleiEntity>();
PageUtils page = tongjifenleiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, tongjifenlei), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,TongjifenleiEntity tongjifenlei, HttpServletRequest request){
EntityWrapper<TongjifenleiEntity> ew = new EntityWrapper<TongjifenleiEntity>();
PageUtils page = tongjifenleiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, tongjifenlei), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( TongjifenleiEntity tongjifenlei){
EntityWrapper<TongjifenleiEntity> ew = new EntityWrapper<TongjifenleiEntity>();
ew.allEq(MPUtil.allEQMapPre( tongjifenlei, "tongjifenlei"));
return R.ok().put("data", tongjifenleiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(TongjifenleiEntity tongjifenlei){
EntityWrapper< TongjifenleiEntity> ew = new EntityWrapper< TongjifenleiEntity>();
ew.allEq(MPUtil.allEQMapPre( tongjifenlei, "tongjifenlei"));
TongjifenleiView tongjifenleiView = tongjifenleiService.selectView(ew);
return R.ok("查询统计分类成功").put("data", tongjifenleiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
TongjifenleiEntity tongjifenlei = tongjifenleiService.selectById(id);
return R.ok().put("data", tongjifenlei);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
TongjifenleiEntity tongjifenlei = tongjifenleiService.selectById(id);
return R.ok().put("data", tongjifenlei);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody TongjifenleiEntity tongjifenlei, HttpServletRequest request){
tongjifenlei.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(tongjifenlei);
tongjifenleiService.insert(tongjifenlei);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody TongjifenleiEntity tongjifenlei, HttpServletRequest request){
tongjifenlei.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(tongjifenlei);
tongjifenleiService.insert(tongjifenlei);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody TongjifenleiEntity tongjifenlei, HttpServletRequest request){
//ValidatorUtils.validateEntity(tongjifenlei);
tongjifenleiService.updateById(tongjifenlei);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
tongjifenleiService.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<TongjifenleiEntity> wrapper = new EntityWrapper<TongjifenleiEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = tongjifenleiService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
获取源码或论文
如需对应的LW或源码,以及其他定制需求,也可以下方微信联系我。