首頁 資訊 基于微信小程序的遠(yuǎn)程家庭健康監(jiān)測(cè)管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn)

基于微信小程序的遠(yuǎn)程家庭健康監(jiān)測(cè)管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn)

來源:泰然健康網(wǎng) 時(shí)間:2024年11月25日 08:15

小程序開發(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); }

相關(guān)知識(shí)

個(gè)人健康管理系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn)
醫(yī)療行業(yè)遠(yuǎn)程診療與健康管理系統(tǒng)實(shí)施計(jì)劃.doc
個(gè)人健康管理系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn) (定稿).docx
用于遠(yuǎn)程醫(yī)療的健康檢測(cè)設(shè)備
國(guó)家衛(wèi)生計(jì)生委關(guān)于印發(fā)遠(yuǎn)程醫(yī)療信息系統(tǒng)建設(shè)技術(shù)指南的
一種基于NBIOT技術(shù)的嬰兒健康狀況監(jiān)測(cè)系統(tǒng)設(shè)計(jì)方法
健康行業(yè)遠(yuǎn)程醫(yī)療咨詢系統(tǒng)建設(shè).doc
健康管理系統(tǒng)設(shè)計(jì)
基于SOA的體檢中心健康管理平臺(tái)設(shè)計(jì)與實(shí)現(xiàn)
醫(yī)療衛(wèi)生行業(yè)遠(yuǎn)程醫(yī)療與健康管理平臺(tái)方案.doc

網(wǎng)址: 基于微信小程序的遠(yuǎn)程家庭健康監(jiān)測(cè)管理系統(tǒng)設(shè)計(jì)與實(shí)現(xiàn) http://m.u1s5d6.cn/newsview76636.html

推薦資訊