基于ssm家庭理财系统源码和论文

基于ssm家庭理财系统源码和论文743

idea 数据库mysql5.7+ 数据库链接工具:navcat,小海豚等

环境: jdk8 tomcat8.5 开发技术 ssm

摘要

随着Internet的发展,人们的日常生活已经离不开网络。未来人们的生活与工作将变得越来越数字化,网络化和电子化。网上管理,它将是直接管理家庭理财系统app的最新形式。本论文是以构建家庭理财系统app为目标,使用java技术制作,由前台和后台两大部分组成。着重论述了系统设计分析,系统主要包括首页、个人中心、用户管理、账户信息管理、账户支出管理、账户收入管理、系统管理等功能,以及后台数据库管理。从app设计到详细实现都根据了app的建设思想和mysql数据库的设计方法。

该系统它可以使家庭理财操作简单,使家庭理财的管理向一个更高层次前进。

本系统尝试使用ssm框架在网上架构一个动态的家庭理财系统app,以使每一用户在家就能通过系统来进行家庭理财管理。

****关键词:****家庭理财;ssm框架;mysql数据库

基于ssm家庭理财系统源码和论文743

演示视频:

基于ssm家庭理财系统源码和论文

Abstract

With the development of Internet, People's Daily life has been inseparable from the Network. In the future, people's life and work will become more and more digital, network and electronic. Online management, it will be the latest form of direct management family financial system app. This paper is to build a family financial management system app as the goal, the use of Java technology, made by the front and back two parts. The system mainly includes home page, personal center, user management, account information management, account expenditure management, account income management, system management and other functions, as well as background database management. From app design to detailed implementation are based on the idea of app construction and mysql database design method.

The system it can make family financial management simple operation, so that the management of family financial management to a higher level forward.

This system tries to use SSM framework to construct a dynamic family financial management system app on the Internet, so that each user can manage family financial management through the system at home.

Key words: family finance; SSM framework; The mysql database

复制代码
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.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.ZhanghushouruEntity;
import com.entity.view.ZhanghushouruView;

import com.service.ZhanghushouruService;
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-03-16 17:22:42
 */
@RestController
@RequestMapping("/zhanghushouru")
public class ZhanghushouruController {
    @Autowired
    private ZhanghushouruService zhanghushouruService;



    


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

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

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

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

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(ZhanghushouruEntity zhanghushouru){
        EntityWrapper< ZhanghushouruEntity> ew = new EntityWrapper< ZhanghushouruEntity>();
 		ew.allEq(MPUtil.allEQMapPre( zhanghushouru, "zhanghushouru")); 
		ZhanghushouruView zhanghushouruView =  zhanghushouruService.selectView(ew);
		return R.ok("查询账户收入成功").put("data", zhanghushouruView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        ZhanghushouruEntity zhanghushouru = zhanghushouruService.selectById(id);
        return R.ok().put("data", zhanghushouru);
    }

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



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

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

        zhanghushouruService.insert(zhanghushouru);
        return R.ok();
    }

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

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        zhanghushouruService.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<ZhanghushouruEntity> wrapper = new EntityWrapper<ZhanghushouruEntity>();
		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 = zhanghushouruService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	







}

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.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.ZhanghuxinxiEntity;
import com.entity.view.ZhanghuxinxiView;

import com.service.ZhanghuxinxiService;
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-03-16 17:22:42
 */
@RestController
@RequestMapping("/zhanghuxinxi")
public class ZhanghuxinxiController {
    @Autowired
    private ZhanghuxinxiService zhanghuxinxiService;



    


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

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

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

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

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(ZhanghuxinxiEntity zhanghuxinxi){
        EntityWrapper< ZhanghuxinxiEntity> ew = new EntityWrapper< ZhanghuxinxiEntity>();
 		ew.allEq(MPUtil.allEQMapPre( zhanghuxinxi, "zhanghuxinxi")); 
		ZhanghuxinxiView zhanghuxinxiView =  zhanghuxinxiService.selectView(ew);
		return R.ok("查询账户信息成功").put("data", zhanghuxinxiView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        ZhanghuxinxiEntity zhanghuxinxi = zhanghuxinxiService.selectById(id);
        return R.ok().put("data", zhanghuxinxi);
    }

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



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

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

        zhanghuxinxiService.insert(zhanghuxinxi);
        return R.ok();
    }

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

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        zhanghuxinxiService.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<ZhanghuxinxiEntity> wrapper = new EntityWrapper<ZhanghuxinxiEntity>();
		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 = zhanghuxinxiService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	







}
相关推荐
笨拙的老猴子10 分钟前
Spring AI 实战教程(七):Agent 智能体 —— 用电商购物助手学透自主规划与工具执行
java·人工智能·spring
月落归舟14 分钟前
深入解析Java基础之基础
java·开发语言
折哥的程序人生 · 物流技术专研14 分钟前
《Java 100 天进阶之路》第20篇:Java初始化、构造器、对象创建的过程
java·开发语言·后端·面试
电魂泡哥21 分钟前
CMS垃圾回收
java·jvm·算法
Amctwd39 分钟前
【Python】从Excel中按行提取图片
java·python·excel
环流_42 分钟前
Redis中string类型的应用场景
数据库·redis·缓存
倔强的石头_42 分钟前
拒绝被复杂报表拖垮!HTAP场景下“标量子查询消除”硬核调优指南
数据库
啃臭1 小时前
AOP和反射
java·spring boot
环流_1 小时前
redis中list类型
数据库·redis·list
西凉的悲伤1 小时前
java 使用PNG图片隐写文件
java·图片隐写·png