大家好!我是程序员一帆,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏: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/89298681
论文目录
【如需全文请按文末获取联系】
一、项目简介
本系统为个人日常事务管理系统,是采用计算机和网络技术进行开发的在线个人事务管理平台,可以实现日常安排、消费记录、重要提醒设置等。本系统采用SSM框架和VUE技术,数据库为Mysql,运行环境为Eclipse。使用角色分为用户、管理员,本系统的功能包括个人中心管理、用户管理、日常安排管理、消费记录管理、重要提醒管理。其中,用户负责记录消费、安排日常事务和设置重要提醒,管理员可以管理用户信息和基础数据信息等。
二、系统设计
2.1软件功能模块设计
系统的功能结构是系统实现的框架,本系统的主要结构为管理员和用户。管理员的功能为个人中心管理、用户管理、基础数据信息管理、日常安排信息管理、消费记录信息管理、重要提醒信息管理等。用户的功能为个人中心管理、日常安排信息管理、消费记录管理和重要提醒信息管理等。本个人日常事务管理系统功能结构图如下图3-1所示:
2.2数据库设计
(1)管理员ER图包括的属性有管理员的编号、用户名和密码。管理员ER图如下图3-2所示:
(2)日常安排信息包含的属性为日常安排的详细描述,有编号、安排时间等。日常安排信息ER图如下图3-3所示:
(4)重要提醒信息实体的属性有编号、用户姓名等。重要提醒信息实体ER图如下图3-5所示:
(7)本个人日常事务管理系统的整体实体关系图如下图3-6所示:
三、系统项目部分截图
3.1个人中心管理功能的实现界面
个人中心管理的内容包括修改密码和个人信息的修改。本系统中可以拥有多个管理员。个人中心管理功能的运行界面如下图4-5所示:
3.2日常安排管理功能的实现界面
用户浏览的日常安排都是由管理员在此功能里进行维护添加的,同样当管理员添加、编辑日常安排信息后,数据库表中的日常安排信息表也会发生改变。日常安排信息管理功能的运行界面如下图4-6所示:
在添加日常安排信息时可以取消和提交。发布新日常安排的运行界面如下图4-7所示:
消费记录管理功能的实现界面
管理员可以记录日常的消费信息并查询其它用户发布的消费记录和进行必要的修改、删除。查询消费记录信息功能的实现界面如下图4-10所示:
重要提醒管理功能的实现界面
管理员可以设置重要提醒的信息,也可以看到其它用户设置的重要提醒内容。管理员查询重要提醒信息的实现界面如下图4-11所示:
3.3用户角色功能的界面实现
日常安排管理功能的界面实现
用户可以查询日常安排详情,也可以输入日常安排标题进行日常安排信息的查询,还要以发布新的日常安排信息,用户发布日常安排信息功能的运行界面如下图4-12所示:
重要提醒管理功能的实现界面
用户可以查询重要提醒的内容也可以设置新的重要提醒信息。查询重要提醒信息功能的运行界面如下图4-13所示:
消费记录管理功能的界面实现
用户可以查询自己的消费记录并登记新的消费记录。消费记录查询功能的实现界面如下图4-15所示:
四、部分核心代码
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("/richanganpai")
public class RichanganpaiController {
private static final Logger logger = LoggerFactory.getLogger(RichanganpaiController.class);
@Autowired
private RichanganpaiService richanganpaiService;
@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"));
if(params.get("orderBy")==null || params.get("orderBy")==""){
params.put("orderBy","id");
}
PageUtils page = richanganpaiService.queryPage(params);
//字典表数据转换
List<RichanganpaiView> list =(List<RichanganpaiView>)page.getList();
for(RichanganpaiView 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);
RichanganpaiEntity richanganpai = richanganpaiService.selectById(id);
if(richanganpai !=null){
//entity转view
RichanganpaiView view = new RichanganpaiView();
BeanUtils.copyProperties( richanganpai , view );//把实体数据重构到view中
//级联表
YonghuEntity yonghu = yonghuService.selectById(richanganpai.getYonghuId());
if(yonghu != null){
BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段
view.setYonghuId(yonghu.getId());
}
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody RichanganpaiEntity richanganpai, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,richanganpai:{}",this.getClass().getName(),richanganpai.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(false)
return R.error(511,"永远不会进入");
else if("用户".equals(role))
richanganpai.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));
Wrapper<RichanganpaiEntity> queryWrapper = new EntityWrapper<RichanganpaiEntity>()
.eq("yonghu_id", richanganpai.getYonghuId())
.eq("richanganpai_name", richanganpai.getRichanganpaiName())
.eq("richanganpai_types", richanganpai.getRichanganpaiTypes())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
RichanganpaiEntity richanganpaiEntity = richanganpaiService.selectOne(queryWrapper);
if(richanganpaiEntity==null){
richanganpai.setInsertTime(new Date());
richanganpai.setCreateTime(new Date());
richanganpaiService.insert(richanganpai);
return R.ok();
}else {
return R.error(511,"表中有相同数据");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody RichanganpaiEntity richanganpai, HttpServletRequest request){
logger.debug("update方法:,,Controller:{},,richanganpai:{}",this.getClass().getName(),richanganpai.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
// if(false)
// return R.error(511,"永远不会进入");
// else if("用户".equals(role))
// richanganpai.setYonghuId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));
//根据字段查询是否有相同数据
Wrapper<RichanganpaiEntity> queryWrapper = new EntityWrapper<RichanganpaiEntity>()
.notIn("id",richanganpai.getId())
.andNew()
.eq("yonghu_id", richanganpai.getYonghuId())
.eq("richanganpai_name", richanganpai.getRichanganpaiName())
.eq("richanganpai_types", richanganpai.getRichanganpaiTypes())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
RichanganpaiEntity richanganpaiEntity = richanganpaiService.selectOne(queryWrapper);
if(richanganpaiEntity==null){
richanganpaiService.updateById(richanganpai);//根据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());
richanganpaiService.deleteBatchIds(Arrays.asList(ids));
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<RichanganpaiEntity> richanganpaiList = 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("../../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){
//循环
RichanganpaiEntity richanganpaiEntity = new RichanganpaiEntity();
// richanganpaiEntity.setYonghuId(Integer.valueOf(data.get(0))); //用户 要改的
// richanganpaiEntity.setRichanganpaiName(data.get(0)); //安排名称 要改的
// richanganpaiEntity.setRichanganpaiTypes(Integer.valueOf(data.get(0))); //安排类型 要改的
// richanganpaiEntity.setAnpaiTime(sdf.parse(data.get(0))); //安排时间 要改的
// richanganpaiEntity.setRichanganpaiContent("");//详情和图片
// richanganpaiEntity.setInsertTime(date);//时间
// richanganpaiEntity.setCreateTime(date);//时间
richanganpaiList.add(richanganpaiEntity);
//把要查询是否重复的字段放入map中
}
//查询是否重复
richanganpaiService.insertBatch(richanganpaiList);
return R.ok();
}
}
}
}catch (Exception e){
e.printStackTrace();
return R.error(511,"批量插入数据异常,请联系管理员");
}
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。