基于SSM+Vue+JSP的幼儿教育管理系统、幼儿园管理系统,附源码+数据库,适合课程设计、毕业设计

1、项目介绍

基于SSM+Vue+JSP的幼儿教育管理系统、幼儿园管理系统,附源码+数据库,分为管理员、用户

员工-功能:登录、注册、首页、幼儿园信息、活动信息、就餐信息、我的、跳转到后台、个人中心、学生信息管理、班级信息管理、缴费信息管理、幼儿园信息管理、教师信息管理、考勤信息管理、考勤申请管理、活动信息管理、就餐信息管理、我的收藏管理

管理员-功能:登录、个人中心、用户管理、学生信息管理、班级信息管理、缴费信息管理、幼儿园信息管理、教师信息管理、考勤信息管理、考勤申请管理、活动信息管理、就餐信息管理、管理员管理

Java 毕业设计,SSM 课程设计,基于SSM +Vue开发的,毕业设计、期末大作业、课程设计、高分必看,下载下来,简单部署,就可以使用

包含:项目源码、数据库脚本等,该项目可以作为毕设、课程设计使用,前后端代码都在里面

该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值

2、技术框架

运行系统:Windows

编程语言:Java

系统架构:B/S

前端框架:Vue+JSP+JavaScript+Css+LayUI

后端框架:SSM(Spring、SpringMVC、MyBatis)

数据库:MySQL

是否前后端分离:否

Maven项目:是

数据库表数量:17

运行环境:JDK8+MySQL5.6+idea+Tomcat8.5

3、演示视频

基于SSM+Vue+JSP的幼儿教育管理系统

4、项目截图

5、代码示例

public class DiscusshuodongxinxiController {
    @Autowired
    private DiscusshuodongxinxiService discusshuodongxinxiService;
    


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

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

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

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(DiscusshuodongxinxiEntity discusshuodongxinxi){
        EntityWrapper< DiscusshuodongxinxiEntity> ew = new EntityWrapper< DiscusshuodongxinxiEntity>();
 		ew.allEq(MPUtil.allEQMapPre( discusshuodongxinxi, "discusshuodongxinxi")); 
		DiscusshuodongxinxiView discusshuodongxinxiView =  discusshuodongxinxiService.selectView(ew);
		return R.ok("查询活动信息评论表成功").put("data", discusshuodongxinxiView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") Long id){
        DiscusshuodongxinxiEntity discusshuodongxinxi = discusshuodongxinxiService.selectById(id);
        return R.ok().put("data", discusshuodongxinxi);
    }

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



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

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

        discusshuodongxinxiService.insert(discusshuodongxinxi);
        return R.ok();
    }

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

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        discusshuodongxinxiService.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<DiscusshuodongxinxiEntity> wrapper = new EntityWrapper<DiscusshuodongxinxiEntity>();
		if(map.get("remindstart")!=null) {
			wrapper.ge(columnName, map.get("remindstart"));
		}
		if(map.get("remindend")!=null) {
			wrapper.le(columnName, map.get("remindend"));
		}


		int count = discusshuodongxinxiService.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、付费专栏及课程。

余额充值