【计算机毕业设计】忘忧小区物业管理系统( 二 )


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.XiaoqutongzhiEntity;import com.entity.view.XiaoqutongzhiView;import com.service.XiaoqutongzhiService;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-05-09 10:58:53*/@RestController@RequestMapping("/xiaoqutongzhi")public class XiaoqutongzhiController {@Autowiredprivate XiaoqutongzhiService xiaoqutongzhiService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map params,XiaoqutongzhiEntity xiaoqutongzhi, HttpServletRequest request){EntityWrapper ew = new EntityWrapper();PageUtils page = xiaoqutongzhiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xiaoqutongzhi), params), params));return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map params,XiaoqutongzhiEntity xiaoqutongzhi, HttpServletRequest request){EntityWrapper ew = new EntityWrapper();PageUtils page = xiaoqutongzhiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xiaoqutongzhi), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( XiaoqutongzhiEntity xiaoqutongzhi){EntityWrapper ew = new EntityWrapper();ew.allEq(MPUtil.allEQMapPre( xiaoqutongzhi, "xiaoqutongzhi")); return R.ok().put("data", xiaoqutongzhiService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(XiaoqutongzhiEntity xiaoqutongzhi){EntityWrapper< XiaoqutongzhiEntity> ew = new EntityWrapper< XiaoqutongzhiEntity>();ew.allEq(MPUtil.allEQMapPre( xiaoqutongzhi, "xiaoqutongzhi")); XiaoqutongzhiView xiaoqutongzhiView =xiaoqutongzhiService.selectView(ew);return R.ok("查询小区通知成功").put("data", xiaoqutongzhiView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){XiaoqutongzhiEntity xiaoqutongzhi = xiaoqutongzhiService.selectById(id);xiaoqutongzhi.setClicknum(xiaoqutongzhi.getClicknum()+1);xiaoqutongzhi.setClicktime(new Date());xiaoqutongzhiService.updateById(xiaoqutongzhi);return R.ok().put("data", xiaoqutongzhi);}/*** 前端详情*/@IgnoreAuth@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){XiaoqutongzhiEntity xiaoqutongzhi = xiaoqutongzhiService.selectById(id);xiaoqutongzhi.setClicknum(xiaoqutongzhi.getClicknum()+1);xiaoqutongzhi.setClicktime(new Date());xiaoqutongzhiService.updateById(xiaoqutongzhi);return R.ok().put("data", xiaoqutongzhi);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody XiaoqutongzhiEntity xiaoqutongzhi, HttpServletRequest request){xiaoqutongzhi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(xiaoqutongzhi);xiaoqutongzhiService.insert(xiaoqutongzhi);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody XiaoqutongzhiEntity xiaoqutongzhi, HttpServletRequest request){xiaoqutongzhi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(xiaoqutongzhi);xiaoqutongzhiService.insert(xiaoqutongzhi);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody XiaoqutongzhiEntity xiaoqutongzhi, HttpServletRequest request){//ValidatorUtils.validateEntity(xiaoqutongzhi);xiaoqutongzhiService.updateById(xiaoqutongzhi);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){xiaoqutongzhiService.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