小程序開發(fā)說明
開發(fā)語言:Java 框架:ssm JDK版本:JDK1.8 服務(wù)器:tomcat7 數(shù)據(jù)庫:mysql 5.7(一定要5.7版本) 數(shù)據(jù)庫工具:Navicat11 開發(fā)軟件:eclipse/myeclipse/idea Maven包:Maven3.3.9 瀏覽器:谷歌瀏覽器
小程序框架:uniapp 小程序開發(fā)軟件:HBuilder X 小程序運(yùn)行軟件:微信開發(fā)者
關(guān)鍵代碼:
/**
用戶反饋后端接口@author@email@date 2022-04-30 10:23:01 */ @RestController @RequestMapping("/yonghufankui") public class YonghufankuiController { @Autowired private YonghufankuiService yonghufankuiService;/**后端列表 */ @RequestMapping("/page") public R page(@RequestParam Map<String, Object> params,YonghufankuiEntity yonghufankui, HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString(); if(tableName.equals("yonghu")) { yonghufankui.setShoujihao((String)request.getSession().getAttribute("username")); } EntityWrapper(); PageUtils page = yonghufankuiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yonghufankui), params), params)); return R.ok().put("data", page); }
/**
前端列表 */ @IgnoreAuth @RequestMapping("/list") public R list(@RequestParam Map<String, Object> params,YonghufankuiEntity yonghufankui, HttpServletRequest request){ EntityWrapper(); PageUtils page = yonghufankuiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yonghufankui), params), params)); return R.ok().put("data", page); }/**
列表 */ @RequestMapping("/lists") public R list( YonghufankuiEntity yonghufankui){ EntityWrapper(); ew.allEq(MPUtil.allEQMapPre( yonghufankui, "yonghufankui")); return R.ok().put("data", yonghufankuiService.selectListView(ew)); }/**
查詢 */ @RequestMapping("/query") public R query(YonghufankuiEntity yonghufankui){ EntityWrapper< YonghufankuiEntity> ew = new EntityWrapper< YonghufankuiEntity>(); ew.allEq(MPUtil.allEQMapPre( yonghufankui, "yonghufankui")); YonghufankuiView yonghufankuiView = yonghufankuiService.selectView(ew); return R.ok("查詢用戶反饋成功").put("data", yonghufankuiView); }/**
后端詳情 */ @RequestMapping("/info/{id}") public R info(@PathVariable("id") Long id){ YonghufankuiEntity yonghufankui = yonghufankuiService.selectById(id); return R.ok().put("data", yonghufankui); }/**
前端詳情 */ @IgnoreAuth @RequestMapping("/detail/{id}") public R detail(@PathVariable("id") Long id){ YonghufankuiEntity yonghufankui = yonghufankuiService.selectById(id); return R.ok().put("data", yonghufankui); }/**
后端保存 */ @RequestMapping("/save") public R save(@RequestBody YonghufankuiEntity yonghufankui, HttpServletRequest request){ yonghufankui.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue()); //ValidatorUtils.validateEntity(yonghufankui);yonghufankuiService.insert(yonghufankui); return R.ok(); }
/**
前端保存 */ @RequestMapping("/add") public R add(@RequestBody YonghufankuiEntity yonghufankui, HttpServletRequest request){ yonghufankui.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue()); //ValidatorUtils.validateEntity(yonghufankui);yonghufankuiService.insert(yonghufankui); return R.ok(); }
/**
修改 */ @RequestMapping("/update") @Transactional public R update(@RequestBody YonghufankuiEntity yonghufankui, HttpServletRequest request){ ??//ValidatorUtils.validateEntity??(yonghufankui); yonghufankuiService.updateById(yonghufankui);//全部更新 return R.ok(); }/**
刪除 */ @RequestMapping("/delete") public R delete(@RequestBody Long[] ids){ yonghufankuiService.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(); 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("shoujihao", (String)request.getSession().getAttribute("username")); }
int count = yonghufankuiService.selectCount(wrapper); return R.ok().put("count", count); }