ssm family financial management system source code and papers

ssm family financial management system source code and paper 152


 Development tools: idea or eclipse
 database mysql5.7+
 database link tools: navcat, little dolphin and other
  technologies: ssm 

Summary

The fast-paced development of the modern economy and the constantly improving and upgrading of information technology have upgraded traditional data information management to software storage, summary, and centralized processing of data information management methods. This family financial management system was born in such an environment. It can help managers process huge data information in a short time. Using this software tool can help managers improve transaction processing efficiency and achieve twice the result with half the effort. This family financial management system uses the current mature and complete SSM framework, uses the cross-platform Java language that can develop large-scale commercial websites, and the Mysql database, one of the most popular RDBMS application software, for program development. The development of the family financial management system is based on Operators need to design an interface that is simple and beautiful, and is consistent with similar websites in terms of functional module layout. When the program realizes the basic required functions, it also provides some practical solutions to the security issues faced by data information. It can be said that this program not only helps managers handle work affairs efficiently, but also realizes the integration, standardization and automation of data information.

Keywords : Family financial management system; SSM framework; Mysql; automation

Abstract

The fast-paced development of the modern economy and the continuous improvement and upgrading of information technology have allowed the management of traditional data information to be upgraded to software storage, induction, and centralized management of data information. This book lending system was born in such a large environment, which can help managers to process huge data information in a short time. Using this software tool can help managers improve transaction processing efficiency and achieve double the result with half the effort. This book lending system uses the current mature and perfect SSM framework, cross-platform Java language that can be used to develop large-scale commercial websites, and Mysql database, one of the most popular RDBMS application software, for program development. It realizes the functions of book basic data management, book borrowing and return, review of registered teacher information, and announcement information release. The development of the book lending system is designed to be simple and beautiful according to the needs of the operator. The layout of the function module is consistent with the same type of website. When the program realizes the basic requirements, it also provides some practical solutions for the security problems faced by the data information. . It can be said that this program not only helps managers efficiently handle work affairs, but also realizes the integration, standardization and automation of data information.

Key WordsBook borrowing system; SSM framework; Mysql; automation

package com.controller;


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.StringUtil;
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.HuochepiaoCollectionEntity;

import com.service.HuochepiaoCollectionService;
import com.entity.view.HuochepiaoCollectionView;
import com.service.HuochepiaoService;
import com.entity.HuochepiaoEntity;
import com.service.YonghuService;
import com.entity.YonghuEntity;
import com.utils.PageUtils;
import com.utils.R;

/**
 * 火车票收藏
 * 后端接口
 * @author
 * @email
 * @date 2021-04-03
*/
@RestController
@Controller
@RequestMapping("/huochepiaoCollection")
public class HuochepiaoCollectionController {
    private static final Logger logger = LoggerFactory.getLogger(HuochepiaoCollectionController.class);

    @Autowired
    private HuochepiaoCollectionService huochepiaoCollectionService;


    @Autowired
    private TokenService tokenService;
    @Autowired
    private DictionaryService dictionaryService;


    //级联表service
    @Autowired
    private HuochepiaoService huochepiaoService;
    @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(StringUtil.isNotEmpty(role) && "用户".equals(role)){
            params.put("yonghuId",request.getSession().getAttribute("userId"));
        }
        params.put("orderBy","id");
        PageUtils page = huochepiaoCollectionService.queryPage(params);

        //字典表数据转换
        List<HuochepiaoCollectionView> list =(List<HuochepiaoCollectionView>)page.getList();
        for(HuochepiaoCollectionView c:list){
            //修改对应字典表字段
            dictionaryService.dictionaryConvert(c);
        }
        return R.ok().put("data", page);
    }

    /**
    * 后端详情
    */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
        HuochepiaoCollectionEntity huochepiaoCollection = huochepiaoCollectionService.selectById(id);
        if(huochepiaoCollection !=null){
            //entity转view
            HuochepiaoCollectionView view = new HuochepiaoCollectionView();
            BeanUtils.copyProperties( huochepiaoCollection , view );//把实体数据重构到view中

            //级联表
            HuochepiaoEntity huochepiao = huochepiaoService.selectById(huochepiaoCollection.getHuochepiaoId());
            if(huochepiao != null){
                BeanUtils.copyProperties( huochepiao , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                view.setHuochepiaoId(huochepiao.getId());
            }
            //级联表
            YonghuEntity yonghu = yonghuService.selectById(huochepiaoCollection.getYonghuId());
            if(yonghu != null){
                BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                view.setYonghuId(yonghu.getId());
            }
            //修改对应字典表字段
            dictionaryService.dictionaryConvert(view);
            return R.ok().put("data", view);
        }else {
            return R.error(511,"查不到数据");
        }

    }

    /**
    * 后端保存
    */
    @RequestMapping("/save")
    public R save(@RequestBody HuochepiaoCollectionEntity huochepiaoCollection, HttpServletRequest request){
        logger.debug("save方法:,,Controller:{},,huochepiaoCollection:{}",this.getClass().getName(),huochepiaoCollection.toString());
        Wrapper<HuochepiaoCollectionEntity> queryWrapper = new EntityWrapper<HuochepiaoCollectionEntity>()
            .eq("huochepiao_id", huochepiaoCollection.getHuochepiaoId())
            .eq("yonghu_id", huochepiaoCollection.getYonghuId())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        HuochepiaoCollectionEntity huochepiaoCollectionEntity = huochepiaoCollectionService.selectOne(queryWrapper);
        if(huochepiaoCollectionEntity==null){
            huochepiaoCollection.setInsertTime(new Date());
            huochepiaoCollection.setCreateTime(new Date());
        //  String role = String.valueOf(request.getSession().getAttribute("role"));
        //  if("".equals(role)){
        //      huochepiaoCollection.set
        //  }
            huochepiaoCollectionService.insert(huochepiaoCollection);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }

    /**
    * 后端修改
    */
    @RequestMapping("/update")
    public R update(@RequestBody HuochepiaoCollectionEntity huochepiaoCollection, HttpServletRequest request){
        logger.debug("update方法:,,Controller:{},,huochepiaoCollection:{}",this.getClass().getName(),huochepiaoCollection.toString());
        //根据字段查询是否有相同数据
        Wrapper<HuochepiaoCollectionEntity> queryWrapper = new EntityWrapper<HuochepiaoCollectionEntity>()
            .notIn("id",huochepiaoCollection.getId())
            .andNew()
            .eq("huochepiao_id", huochepiaoCollection.getHuochepiaoId())
            .eq("yonghu_id", huochepiaoCollection.getYonghuId())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
        HuochepiaoCollectionEntity huochepiaoCollectionEntity = huochepiaoCollectionService.selectOne(queryWrapper);
        if(huochepiaoCollectionEntity==null){
            //  String role = String.valueOf(request.getSession().getAttribute("role"));
            //  if("".equals(role)){
            //      huochepiaoCollection.set
            //  }
            huochepiaoCollectionService.updateById(huochepiaoCollection);//根据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());
        huochepiaoCollectionService.deleteBatchIds(Arrays.asList(ids));
        return R.ok();
    }



    /**
    * 前端列表
    */
    @RequestMapping("/list")
    public R list(@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(StringUtil.isNotEmpty(role) && "用户".equals(role)){
            params.put("yonghuId",request.getSession().getAttribute("userId"));
        }
        // 没有指定排序字段就默认id倒序
        if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){
            params.put("orderBy","id");
        }
        PageUtils page = huochepiaoCollectionService.queryPage(params);

        //字典表数据转换
        List<HuochepiaoCollectionView> list =(List<HuochepiaoCollectionView>)page.getList();
        for(HuochepiaoCollectionView c:list){
            //修改对应字典表字段
            dictionaryService.dictionaryConvert(c);
        }
        return R.ok().put("data", page);
    }

    /**
    * 前端详情
    */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") Long id){
        logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
    HuochepiaoCollectionEntity huochepiaoCollection = huochepiaoCollectionService.selectById(id);
        if(huochepiaoCollection !=null){
            //entity转view
    HuochepiaoCollectionView view = new HuochepiaoCollectionView();
            BeanUtils.copyProperties( huochepiaoCollection , view );//把实体数据重构到view中

            //级联表
                HuochepiaoEntity huochepiao = huochepiaoService.selectById(huochepiaoCollection.getHuochepiaoId());
            if(huochepiao != null){
                BeanUtils.copyProperties( huochepiao , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                view.setHuochepiaoId(huochepiao.getId());
            }
            //级联表
                YonghuEntity yonghu = yonghuService.selectById(huochepiaoCollection.getYonghuId());
            if(yonghu != null){
                BeanUtils.copyProperties( yonghu , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段
                view.setYonghuId(yonghu.getId());
            }
            //修改对应字典表字段
            dictionaryService.dictionaryConvert(view);
            return R.ok().put("data", view);
        }else {
            return R.error(511,"查不到数据");
        }
    }


    /**
    * 前端保存
    */
    @RequestMapping("/add")
    public R add(@RequestBody HuochepiaoCollectionEntity huochepiaoCollection, HttpServletRequest request){
        logger.debug("add方法:,,Controller:{},,huochepiaoCollection:{}",this.getClass().getName(),huochepiaoCollection.toString());
        Wrapper<HuochepiaoCollectionEntity> queryWrapper = new EntityWrapper<HuochepiaoCollectionEntity>()
            .eq("huochepiao_id", huochepiaoCollection.getHuochepiaoId())
            .eq("yonghu_id", huochepiaoCollection.getYonghuId())
            ;
        logger.info("sql语句:"+queryWrapper.getSqlSegment());
    HuochepiaoCollectionEntity huochepiaoCollectionEntity = huochepiaoCollectionService.selectOne(queryWrapper);
        if(huochepiaoCollectionEntity==null){
            huochepiaoCollection.setInsertTime(new Date());
            huochepiaoCollection.setCreateTime(new Date());
        //  String role = String.valueOf(request.getSession().getAttribute("role"));
        //  if("".equals(role)){
        //      huochepiaoCollection.set
        //  }
        huochepiaoCollectionService.insert(huochepiaoCollection);
            return R.ok();
        }else {
            return R.error(511,"表中有相同数据");
        }
    }


}

 

Guess you like

Origin blog.csdn.net/weixin_46437112/article/details/132732634