项目介绍
随着信息技术在管理上越来越深入而广泛的应用,管理信息系统的实施在技术上已逐步成熟。本文介绍了基于大学生社团活动管理的微信小程序的开发全过程。通过分析大学生社团活动管理的不足,创建了一个计算机管理基于大学生社团活动管理的微信小程序的方案。文章介绍了基于大学生社团活动管理的微信小程序的系统分析部分,包括可行性分析等,系统设计部分主要介绍了系统功能设计和数据库设计。
本基于大学生社团活动管理的微信小程序有管理员,社长,社员三个角色。管理员功能有个人中心,学生管理,社长管理,社团分类管理,社团信息管理,社团加入管理,社团活动管理,活动报名管理,社团成员管理,系统管理。社长和社员都可以在微信小程序上面进行注册和登录。社长可以在微信小程序上面对社团信息进行管理,对社团加入进行审核,对社团活动进行管理,对活动报名进行审核,对社团成员进行管理。社员可以在微信小程序上面查看和参加社团,查看和报名活动信息等。因而具有一定的实用性。
本基于大学生社团活动管理的微信小程序,后台采用SSM框架,MYSQL数据库设计开发,微信小程序用微信开发者工具开发,充分保证系统的稳定性。系统具有界面清晰、操作简单,功能齐全的特点,使得基于大学生社团活动管理的微信小程序管理工作系统化、规范化。本系统的使用使管理人员从繁重的工作中解脱出来,实现无纸化办公,能够有效的提高基于大学生社团活动管理的微信小程序管理效率。
开发环境
编程语言:Java
数据库 :Mysql
系统架构:B/S
后端框架:SSM
编译工具:idea或者eclipse,微信开发者工具,jdk1.8,maven
支持定做:java/php/python/android/小程序vue/爬虫/c#/asp.net
系统实现
5.1 管理员模块的实现
5.1.1 学生信息管理
基于大学生社团活动管理的微信小程序的系统管理员可以对学生信息修改删除以及查询操作。具体界面的展示如图5.1所示。
图5.1 学生信息管理界面
社长信息管理
系统管理员可以查看对社长信息进行修改,删除以及查询操作。具体界面如图5.2所示。
图5.2 社长信息管理界面
5.1.3 社团信息管理
系统管理员可以对社团信息进行搜索,删除以及查询操作。界面如下图所示:
在这里插入图片描述
图5.3 社团信息管理界面
5.1.4 社团成员管理
系统管理员可以对社团成员信息进行查询,修改,删除操作。界面如下图所示:
图5.4 社团成员管理界面
5.2 小程序模块的实现
5.2.1 首页
用户注册登录后可以在小程序首页看到相关信息和链接,可以搜索和点击操作。界面如下图所示:
图5.5 首页界面
5.2.2 社团信息
如果是社长登录就会显示新增和删除社团按钮,并且加入按钮变成灰色不可选定,如果是学生用户登录,则会显示加入。社长角色社团信息界面如下图所示:
图5.6 社团信息界面
5.2.3 我的
我的里面关于各项信息的连接,点击就可以跳转到对应的页面。社长角色我的界面如下图所示:
图5.7 我的界面
核心代码
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.ShetuanxinxiEntity;
import com.entity.view.ShetuanxinxiView;
import com.service.ShetuanxinxiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;
import com.service.StoreupService;
import com.entity.StoreupEntity;
/**
* 社团信息
* 后端接口
* @author
* @email
* @date 2022-04-21 18:09:45
*/
@RestController
@RequestMapping("/shetuanxinxi")
public class ShetuanxinxiController {
@Autowired
private ShetuanxinxiService shetuanxinxiService;
@Autowired
private StoreupService storeupService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,ShetuanxinxiEntity shetuanxinxi,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("shezhang")) {
shetuanxinxi.setZhanghao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<ShetuanxinxiEntity> ew = new EntityWrapper<ShetuanxinxiEntity>();
PageUtils page = shetuanxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, shetuanxinxi), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,ShetuanxinxiEntity shetuanxinxi,
HttpServletRequest request){
EntityWrapper<ShetuanxinxiEntity> ew = new EntityWrapper<ShetuanxinxiEntity>();
PageUtils page = shetuanxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, shetuanxinxi), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( ShetuanxinxiEntity shetuanxinxi){
EntityWrapper<ShetuanxinxiEntity> ew = new EntityWrapper<ShetuanxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( shetuanxinxi, "shetuanxinxi"));
return R.ok().put("data", shetuanxinxiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(ShetuanxinxiEntity shetuanxinxi){
EntityWrapper< ShetuanxinxiEntity> ew = new EntityWrapper< ShetuanxinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( shetuanxinxi, "shetuanxinxi"));
ShetuanxinxiView shetuanxinxiView = shetuanxinxiService.selectView(ew);
return R.ok("查询社团信息成功").put("data", shetuanxinxiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
ShetuanxinxiEntity shetuanxinxi = shetuanxinxiService.selectById(id);
return R.ok().put("data", shetuanxinxi);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
ShetuanxinxiEntity shetuanxinxi = shetuanxinxiService.selectById(id);
return R.ok().put("data", shetuanxinxi);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody ShetuanxinxiEntity shetuanxinxi, HttpServletRequest request){
shetuanxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(shetuanxinxi);
shetuanxinxiService.insert(shetuanxinxi);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody ShetuanxinxiEntity shetuanxinxi, HttpServletRequest request){
shetuanxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(shetuanxinxi);
shetuanxinxiService.insert(shetuanxinxi);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
@Transactional
public R update(@RequestBody ShetuanxinxiEntity shetuanxinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(shetuanxinxi);
shetuanxinxiService.updateById(shetuanxinxi);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
shetuanxinxiService.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<ShetuanxinxiEntity> wrapper = new EntityWrapper<ShetuanxinxiEntity>();
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("shezhang")) {
wrapper.eq("zhanghao", (String)request.getSession().getAttribute("username"));
}
int count = shetuanxinxiService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
论文参考
目录
1系统概述 1
1.1 研究背景 1
1.2研究目的 1
1.3系统设计思想 1
2相关技术 2
2.1微信小程序 2
2.2 MYSQL数据库 3
2.3 uni-app 3
2.4 SSM框架简介 4
3系统分析 5
3.1可行性分析 5
3.1.1技术可行性 5
3.1.2经济可行性 6
3.1.3操作可行性 6
3.2系统性能分析 6
3.2.1 系统安全性 6
3.2.2 数据完整性 7
3.3系统界面分析 7
3.4系统流程和逻辑 8
4系统概要设计 9
4.1概述 9
4.2系统结构 10
4.3.数据库设计 10
4.3.1数据库实体 10
4.3.2数据库设计表 12
5系统详细实现 16
5.1 管理员模块的实现 16
5.1.1 学生信息管理 16
5.1.2 社长信息管理 16
5.1.3 社团信息管理 17
5.1.4 社团成员管理 18
5.2 小程序模块的实现 18
5.2.1 首页 18
5.2.2 社团信息 19
5.2.3 我的 20
6系统测试 21
6.1概念和意义 21
6.2特性 22
6.3重要性 22
6.4测试方法 23
6.5 功能测试 23
6.6可用性测试 24
6.7性能测试 24
6.8测试分析 24
6.9测试结果分析 25
结论 25
致谢语 26
参考文献 26