【计算机毕业设计】幼儿园管理系统

Java幼儿园管理系统
项目运行

环境配置:

Jdk1.8 + Tomcat8.5 + Mysql + HBuilderX(Webstorm也行)+ Eclispe(IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持)。

项目技术:

Springboot + mybatis + Maven + Vue 等等组成,B/S模式 + Maven管理等等。

环境需要

1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。

2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;

3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可

4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS;

5.是否Maven项目: 否;查看源码目录中是否包含pom.xml;若包含,则为maven项目,否则为非maven项目

6.数据库:MySql 5.7/8.0等版本均可;

技术栈

后端:Springboot mybatis

前端:vue+css+javascript+jQuery+easyUI+highcharts

使用说明

使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件;

使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;

3.管理员账号:abo 密码:abo

4.开发环境为Eclipse/idea,数据库为mysql 使用java语言开发。

5.运行SpringbootSchemaApplication.java 即可打开首页

6.数据库连接src\main\resources\application.yml中修改

7.maven包版本apache-maven-3.3.9.

8.后台路径地址:localhost:8080/项目名称/admin
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

<?xml version="1.0" encoding="UTF-8"?> SELECT distinct ${column} FROM ${table} where ${column} is not null and ${column} !='' and level=#{level} and parent=#{parent}
<select id="getFollowByOption" resultType="map" >
	SELECT * FROM ${table} where ${column}=#{columnValue}
</select>

<update id="sh">
	UPDATE ${table} set sfsh=#{sfsh} where id=#{id}
</update>

<select id="remindCount" resultType="int" >
	SELECT count(1) FROM ${table} 
		where 1=1 
		<if test = "type == 1 ">
			<if test = " remindstart != null ">
			     and ${column} &gt;= #{remindstart}
			</if>
			<if test = " remindend != null ">
			     and ${column} &lt;= #{remindend}
			</if>
		</if>
					<if test = "type == 2 ">
			<if test = " remindstart != null ">
			     and ${column} &gt;= str_to_date(#{remindstart},'%Y-%m-%d')
			</if>
			<if test = " remindend != null ">
			     and ${column} &lt;= str_to_date(#{remindend},'%Y-%m-%d')
			</if>
		</if>
						</select>

<select id="selectCal" resultType="map" >
	SELECT sum(${column}) sum,max(${column}) max,min(${column}) min,avg(${column}) avg FROM ${table}
</select>

<select id="selectGroup" resultType="map" >
	SELECT ${column} , count(1) total FROM ${table} group by ${column}
</select>

<select id="selectValue" resultType="map" >
	SELECT ${xColumn}, sum(${yColumn}) total FROM ${table} group by ${xColumn}
</select>

package com.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import com.baomidou.mybatisplus.mapper.MetaObjectHandler;
import com.baomidou.mybatisplus.plugins.PaginationInterceptor;

/**

  • mybatis-plus配置
    */
    @Configuration
    public class MybatisPlusConfig {

    /**

    • 分页插件
      */
      @Bean
      public PaginationInterceptor paginationInterceptor() {
      return new PaginationInterceptor();
      }

}
package com.controller;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.commons.lang3.StringUtils;
import org.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.ResourceUtils;
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.annotation.IgnoreAuth;
import com.baidu.aip.face.AipFace;
import com.baidu.aip.face.MatchRequest;
import com.baidu.aip.util.Base64Util;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.ConfigEntity;
import com.service.CommonService;
import com.service.ConfigService;
import com.utils.BaiduUtil;
import com.utils.FileUtil;
import com.utils.R;

/**

  • 通用接口
    */
    @RestController
    public class CommonController{
    @Autowired
    private CommonService commonService;

    @Autowired
    private ConfigService configService;

    private static AipFace client = null;

    private static String BAIDU_DITU_AK = null;

    @RequestMapping(“/location”)
    public R location(String lng,String lat) {
    if(BAIDU_DITU_AKnull) {
    BAIDU_DITU_AK = configService.selectOne(new EntityWrapper().eq(“name”, “baidu_ditu_ak”)).getValue();
    if(BAIDU_DITU_AK
    null) {
    return R.error(“请在配置管理中正确配置baidu_ditu_ak”);
    }
    }
    Map<String, String> map = BaiduUtil.getCityByLonLat(BAIDU_DITU_AK, lng, lat);
    return R.ok().put(“data”, map);
    }

    /**

    • 人脸比对
    • @param face1 人脸1
    • @param face2 人脸2
    • @return
      */
      @RequestMapping(“/matchFace”)
      public R matchFace(String face1, String face2) {
      if(clientnull) {
      /String AppID = configService.selectOne(new EntityWrapper().eq(“name”, “AppID”)).getValue();/
      String APIKey = configService.selectOne(new EntityWrapper().eq(“name”, “APIKey”)).getValue();
      String SecretKey = configService.selectOne(new EntityWrapper().eq(“name”, “SecretKey”)).getValue();
      String token = BaiduUtil.getAuth(APIKey, SecretKey);
      if(token
      null) {
      return R.error(“请在配置管理中正确配置APIKey和SecretKey”);
      }
      client = new AipFace(null, APIKey, SecretKey);
      client.setConnectionTimeoutInMillis(2000);
      client.setSocketTimeoutInMillis(60000);
      }
      JSONObject res = null;
      try {
      File file1 = new File(ResourceUtils.getFile(“classpath:static/upload”).getAbsolutePath()+“/”+face1);
      File file2 = new File(ResourceUtils.getFile(“classpath:static/upload”).getAbsolutePath()+“/”+face2);
      String img1 = Base64Util.encode(FileUtil.FileToByte(file1));
      String img2 = Base64Util.encode(FileUtil.FileToByte(file2));
      MatchRequest req1 = new MatchRequest(img1, “BASE64”);
      MatchRequest req2 = new MatchRequest(img2, “BASE64”);
      ArrayList requests = new ArrayList();
      requests.add(req1);
      requests.add(req2);
      res = client.match(requests);
      System.out.println(res.get(“result”));
      } catch (FileNotFoundException e) {
      e.printStackTrace();
      return R.error(“文件不存在”);
      } catch (IOException e) {
      e.printStackTrace();
      }
      return R.ok().put(“data”, com.alibaba.fastjson.JSONObject.parse(res.get(“result”).toString()));
      }

    /**

    • 获取table表中的column列表(联动接口)
    • @param table
    • @param column
    • @return
      */
      @IgnoreAuth
      @RequestMapping(“/option/{tableName}/{columnName}”)
      public R getOption(@PathVariable(“tableName”) String tableName, @PathVariable(“columnName”) String columnName,String level,String parent) {
      Map<String, Object> params = new HashMap<String, Object>();
      params.put(“table”, tableName);
      params.put(“column”, columnName);
      if(StringUtils.isNotBlank(level)) {
      params.put(“level”, level);
      }
      if(StringUtils.isNotBlank(parent)) {
      params.put(“parent”, parent);
      }
      List data = commonService.getOption(params);
      return R.ok().put(“data”, data);
      }

    /**

    • 根据table中的column获取单条记录
    • @param table
    • @param column
    • @return
      */
      @IgnoreAuth
      @RequestMapping(“/follow/{tableName}/{columnName}”)
      public R getFollowByOption(@PathVariable(“tableName”) String tableName, @PathVariable(“columnName”) String columnName, @RequestParam String columnValue) {
      Map<String, Object> params = new HashMap<String, Object>();
      params.put(“table”, tableName);
      params.put(“column”, columnName);
      params.put(“columnValue”, columnValue);
      Map<String, Object> result = commonService.getFollowByOption(params);
      return R.ok().put(“data”, result);
      }

    /**

    • 修改table表的sfsh状态
    • @param table
    • @param map
    • @return
      */
      @RequestMapping(“/sh/{tableName}”)
      public R sh(@PathVariable(“tableName”) String tableName, @RequestBody Map<String, Object> map) {
      map.put(“table”, tableName);
      commonService.sh(map);
      return R.ok();
      }

    /**

    • 获取需要提醒的记录数

    • @param tableName

    • @param columnName

    • @param type 1:数字 2:日期

    • @param map

    • @return
      */
      @IgnoreAuth
      @RequestMapping(“/remind/{tableName}/{columnName}/{type}”)
      public R remindCount(@PathVariable(“tableName”) String tableName, @PathVariable(“columnName”) String columnName,
      @PathVariable(“type”) String type,@RequestParam Map<String, Object> map) {
      map.put(“table”, tableName);
      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));
      }
      }

      int count = commonService.remindCount(map);
      return R.ok().put(“count”, count);
      }

    /**

    • 单列求和
      */
      @IgnoreAuth
      @RequestMapping(“/cal/{tableName}/{columnName}”)
      public R cal(@PathVariable(“tableName”) String tableName, @PathVariable(“columnName”) String columnName) {
      Map<String, Object> params = new HashMap<String, Object>();
      params.put(“table”, tableName);
      params.put(“column”, columnName);
      Map<String, Object> result = commonService.selectCal(params);
      return R.ok().put(“data”, result);
      }

    /**

    • 分组统计
      */
      @IgnoreAuth
      @RequestMapping(“/group/{tableName}/{columnName}”)
      public R group(@PathVariable(“tableName”) String tableName, @PathVariable(“columnName”) String columnName) {
      Map<String, Object> params = new HashMap<String, Object>();
      params.put(“table”, tableName);
      params.put(“column”, columnName);
      List<Map<String, Object>> result = commonService.selectGroup(params);
      SimpleDateFormat sdf = new SimpleDateFormat(“yyyy-MM-dd”);
      for(Map<String, Object> m : result) {
      for(String k : m.keySet()) {
      if(m.get(k) instanceof Date) {
      m.put(k, sdf.format((Date)m.get(k)));
      }
      }
      }
      return R.ok().put(“data”, result);
      }

    /**

    • (按值统计)
      */
      @IgnoreAuth
      @RequestMapping(“/value/{tableName}/{xColumnName}/{yColumnName}”)
      public R value(@PathVariable(“tableName”) String tableName, @PathVariable(“yColumnName”) String yColumnName, @PathVariable(“xColumnName”) String xColumnName) {
      Map<String, Object> params = new HashMap<String, Object>();
      params.put(“table”, tableName);
      params.put(“xColumn”, xColumnName);
      params.put(“yColumn”, yColumnName);
      List<Map<String, Object>> result = commonService.selectValue(params);
      SimpleDateFormat sdf = new SimpleDateFormat(“yyyy-MM-dd”);
      for(Map<String, Object> m : result) {
      for(String k : m.keySet()) {
      if(m.get(k) instanceof Date) {
      m.put(k, sdf.format((Date)m.get(k)));
      }
      }
      }
      return R.ok().put(“data”, result);
      }

}

``

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.QingjiaxinxiEntity;
import com.entity.view.QingjiaxinxiView;

import com.service.QingjiaxinxiService;
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-18 15:04:00
 */
@RestController
@RequestMapping("/qingjiaxinxi")
public class QingjiaxinxiController {
    @Autowired
    private QingjiaxinxiService qingjiaxinxiService;
    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params,QingjiaxinxiEntity qingjiaxinxi,
		HttpServletRequest request){
		String tableName = request.getSession().getAttribute("tableName").toString();
		if(tableName.equals("jiaoshi")) {
			qingjiaxinxi.setGonghao((String)request.getSession().getAttribute("username"));
		}
        EntityWrapper<QingjiaxinxiEntity> ew = new EntityWrapper<QingjiaxinxiEntity>();
		PageUtils page = qingjiaxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, qingjiaxinxi), params), params));

        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params,QingjiaxinxiEntity qingjiaxinxi, HttpServletRequest request){
        EntityWrapper<QingjiaxinxiEntity> ew = new EntityWrapper<QingjiaxinxiEntity>();
		PageUtils page = qingjiaxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, qingjiaxinxi), params), params));
        return R.ok().put("data", page);
    }

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

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(QingjiaxinxiEntity qingjiaxinxi){
        EntityWrapper< QingjiaxinxiEntity> ew = new EntityWrapper< QingjiaxinxiEntity>();
 		ew.allEq(MPUtil.allEQMapPre( qingjiaxinxi, "qingjiaxinxi")); 
		QingjiaxinxiView qingjiaxinxiView =  qingjiaxinxiService.selectView(ew);
		return R.ok("查询请假信息成功").put("data", qingjiaxinxiView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        QingjiaxinxiEntity qingjiaxinxi = qingjiaxinxiService.selectById(id);
        return R.ok().put("data", qingjiaxinxi);
    }

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



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody QingjiaxinxiEntity qingjiaxinxi, HttpServletRequest request){
    	qingjiaxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(qingjiaxinxi);
        qingjiaxinxiService.insert(qingjiaxinxi);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody QingjiaxinxiEntity qingjiaxinxi, HttpServletRequest request){
    	qingjiaxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(qingjiaxinxi);
        qingjiaxinxiService.insert(qingjiaxinxi);
        return R.ok();
    }

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

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        qingjiaxinxiService.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<QingjiaxinxiEntity> wrapper = new EntityWrapper<QingjiaxinxiEntity>();
		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("jiaoshi")) {
			wrapper.eq("gonghao", (String)request.getSession().getAttribute("username"));
		}

		int count = qingjiaxinxiService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	


}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值