精彩专栏推荐订阅:在下方主页👇🏻👇🏻👇🏻👇🏻
💖🔥作者主页:计算机毕设木哥🔥 💖
文章目录
一、项目介绍
随着人口老龄化趋势加剧,老年一站式服务平台应运而生。该平台旨在为老年人提供全面的生活照护、健康咨询、娱乐活动等服务,通过整合社会资源,打造一个便捷、高效、安全的服务环境。不仅满足了老年人多样化的生活需求,还促进了社会和谐与进步。
在当前社会,随着人口老龄化的不断加剧,老年人口比例持续上升,这不仅对社会经济和医疗体系带来了巨大挑战,也对老年人的生活质量和幸福感产生了深远影响。因此,构建一个全面、高效的老年一站式服务平台显得尤为迫切和必要。该平台能够为老年人提供包括生活照护、健康咨询、娱乐活动等在内的全方位服务,帮助他们更好地适应社会变化,享受高质量的晚年生活。
然而,现有的养老服务体系存在诸多问题。例如,服务资源分散、信息不对称、服务效率低下等,这些问题严重制约了老年人对服务的获取和体验。此外,老年人对现代科技的接受度和操作能力有限,使得他们在享受服务时面临更多的困难和挑战。因此,亟需一个能够整合资源、优化服务流程、提升服务效率的平台,以满足老年人日益增长的服务需求。
本课题旨在研究并开发一个老年一站式服务平台,通过科学的方法和先进的技术手段,实现服务资源的整合、服务流程的优化和服务质量的提升。该平台将采用智能化技术,如大数据分析、人工智能等,为用户提供个性化、精准化的服务。同时,通过用户友好的界面设计,降低老年人使用服务的门槛,提高他们的服务体验。最终,该平台不仅能够显著提升老年人的生活质量,还将推动养老服务体系的创新和发展,具有重要的社会价值和实践意义。
二、开发环境
- 开发语言:Java
- 数据库:MySQL
- 系统架构:B/S
- 后端:springboot
- 前端:vue
- 工具:IDEA或者Eclipse、JDK1.8、Maven
三、系统展示
登录模块:
首页模块:
管理员模块:
四、代码展示
@RestController
@Controller
@RequestMapping("/cailiao")
public class CailiaoController {
private static final Logger logger = LoggerFactory.getLogger(CailiaoController.class);
@Autowired
private CailiaoService cailiaoService;
@Autowired
private TokenService tokenService;
@Autowired
private DictionaryService dictionaryService;
//级联表service
@Autowired
private YonghuService yonghuService;
@Autowired
private WeixiuyuanService weixiuyuanService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role))return R.error(511,"权限为空");else if("员工".equals(role))
params.put("yonghuId",request.getSession().getAttribute("userId"));else if("维修员".equals(role))
params.put("weixiuyuanId",request.getSession().getAttribute("userId"));
if(params.get("orderBy")==null || params.get("orderBy")==""){
params.put("orderBy","id");}
PageUtils page = cailiaoService.queryPage(params);
//字典表数据转换
List<CailiaoView> list =(List<CailiaoView>)page.getList();
for(CailiaoView c:list){
//修改对应字典表字段
dictionaryService.dictionaryConvert(c, request);}return R.ok().put("data", page);}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id, HttpServletRequest request){
logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
CailiaoEntity cailiao = cailiaoService.selectById(id);
if(cailiao !=null){
//entity转view
CailiaoView view = new CailiaoView();
BeanUtils.copyProperties( cailiao , view );//把实体数据重构到view中
//修改对应字典表字段
dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody CailiaoEntity cailiao, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,cailiao:{}",this.getClass().getName(),cailiao.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role))return R.error(511,"权限为空");
Wrapper<CailiaoEntity> queryWrapper = new EntityWrapper<CailiaoEntity>()
.eq("cailiao_uuid_unmber", cailiao.getCailiaoUuidUnmber())
.eq("cailiao_name", cailiao.getCailiaoName())
.eq("cailiao_types", cailiao.getCailiaoTypes())
.eq("cailiao_kucun_number", cailiao.getCailiaoKucunNumber())
.eq("cailiao_danwei", cailiao.getCailiaoDanwei());
logger.info("sql语句:"+queryWrapper.getSqlSegment());
CailiaoEntity cailiaoEntity = cailiaoService.selectOne(queryWrapper);
if(cailiaoEntity==null){
cailiao.setCreateTime(new Date());
cailiaoService.insert(cailiao);return R.ok();}else {return R.error(511,"表中有相同数据");}}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody CailiaoEntity cailiao, HttpServletRequest request){
logger.debug("update方法:,,Controller:{},,cailiao:{}",this.getClass().getName(),cailiao.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
// if(StringUtil.isEmpty(role))
// return R.error(511,"权限为空");
//根据字段查询是否有相同数据
Wrapper<CailiaoEntity> queryWrapper = new EntityWrapper<CailiaoEntity>()
.notIn("id",cailiao.getId())
.andNew()
.eq("cailiao_uuid_unmber", cailiao.getCailiaoUuidUnmber())
.eq("cailiao_name", cailiao.getCailiaoName())
.eq("cailiao_types", cailiao.getCailiaoTypes())
.eq("cailiao_kucun_number", cailiao.getCailiaoKucunNumber())
.eq("cailiao_danwei", cailiao.getCailiaoDanwei());
logger.info("sql语句:"+queryWrapper.getSqlSegment());
CailiaoEntity cailiaoEntity = cailiaoService.selectOne(queryWrapper);
if(cailiaoEntity==null){
cailiaoService.updateById(cailiao);//根据id更新
return R.ok();}else {return R.error(511,"表中有相同数据");}}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Integer[] ids){
logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
cailiaoService.deleteBatchIds(Arrays.asList(ids));return R.ok();}
/**
* 批量上传
*/
@RequestMapping("/batchInsert")
public R save( String fileName){
logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);
try {
List<CailiaoEntity> cailiaoList = new ArrayList<>();//上传的东西
Map<String, List<String>>seachFields= new HashMap<>();//要查询的字段
Date date= new Date();
int lastIndexOf = fileName.lastIndexOf(".");
if(lastIndexOf == -1){return R.error(511,"该文件没有后缀");}else{
String suffix = fileName.substring(lastIndexOf);
if(!".xls".equals(suffix)){return R.error(511,"只支持后缀为xls的excel文件");}else{
URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径
File file= new File(resource.getFile());
if(!file.exists()){return R.error(511,"找不到上传文件,请联系管理员");}else{
List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件
dataList.remove(0);//删除第一行,因为第一行是提示
for(List<String> data:dataList){
//循环
CailiaoEntity cailiaoEntity = new CailiaoEntity();
// cailiaoEntity.setCailiaoUuidUnmber(data.get(0)); //材料编号 要改的
// cailiaoEntity.setCailiaoName(data.get(0)); //材料名称 要改的
// cailiaoEntity.setCailiaoTypes(Integer.valueOf(data.get(0))); //材料类型 要改的
// cailiaoEntity.setCailiaoKucunNumber(Integer.valueOf(data.get(0))); //材料数量 要改的
// cailiaoEntity.setCailiaoDanwei(data.get(0)); //单位 要改的
// cailiaoEntity.setCreateTime(date);//时间
cailiaoList.add(cailiaoEntity);
//把要查询是否重复的字段放入map中
}
//查询是否重复
cailiaoService.insertBatch(cailiaoList);return R.ok();}}}}catch (Exception e){return R.error(511,"批量插入数据异常,请联系管理员");}}
五、项目文档展示
大家可以帮忙点赞、收藏、关注、评论啦 👇🏻
版权归原作者 BYSJMG 所有, 如有侵权,请联系我们删除。