• SSM+Vue+Element-UI实现智能新冠疫苗接种助手管理系统


    文末获取源码

    开发语言:Java
    框架:ssm
    JDK版本:JDK1.8
    服务器:tomcat7
    数据库:mysql 5.7/8.0
    数据库工具:Navicat11
    开发软件:eclipse/myeclipse/idea
    Maven包:Maven3.3.9
    浏览器:谷歌浏览器

    目录

    前言介绍 

    系统功能性需求

    功能需求

    系统用例

    系统总体设计

    系统实现

    首页

    疫苗信息

    疫情动态

    管理员功能模块 

    用户管理 

    疫苗信息管理 

    接种预约管理

    预约分配管理

    用户功能模块 

    接种预约管理 

    接种提醒管理 

    部分核心代码 

    上传文件

    接种预约


    前言介绍 

    随着Internet的发展,人们的日常生活已经离不开网络。未来人们的生活与工作将变得越来越数字化,网络化和电子化。网上管理,它将是直接管理智能新冠疫苗接种助手的最新形式。本论文是以构建智能新冠疫苗接种助手管理系统为目标,使用 java技术制作,由管理员和用户两大部分组成。着重论述了系统设计分析,系统主要包括首页、个人中心、用户管理、疫苗信息管理、接种预约管理、接种提醒管理、预约分配管理等功能,以及后台数据库管理。从系统设计到详细实现都根据了系统的建设思想和mysql数据库的设计方法。

    该系统的应用可以减少工作人员的劳动强度,提高工作效率与管理水平,具有很大的价值。它可以使智能新冠疫苗接种助手管理上操作简单,成功率高,使网上智能新冠疫苗接种助手的管理向一个更高层次前进。

    本系统尝试使用ssm在网上架构一个动态的智能新冠疫苗接种助手管理系统,以使每一用户在家就能通过系统来进行智能新冠疫苗接种助手管理。

    系统功能性需求

    对功能需求的定义,一个软件系统或组件的功能,也是网页所需提供的功能和服务。本系统的功能需求按模块进行分析,主要有管理员和用户两大模块。

    功能需求

    本系统的用户可分为用户和管理员两个用户角色组成。管理员可以管理系统内所有功能,主要有首页、个人中心、用户管理、疫苗信息管理、接种预约管理、接种提醒管理、预约分配管理等功能;用户登录系统主要有首页、个人中心、疫苗信息管理、接种预约管理、接种提醒管理、预约分配管理等功能。

    系统用例

    本系统有主要分为三大部分组成,有登录,用户和管理员等用例。

    (1)登录模块用例中用户包括用户和管理员两种角色,分别可以进行其对应的身份登录或取消登录,关闭系统。登录模块用例图如图

    (2)用户模块主要包括首页、个人中心、疫苗信息管理、接种预约管理、接种提醒管理、预约分配管理等功能,用户模块用例图如图

    (3)管理员通过系统对可以实现系统管理,主要包括首页、个人中心、用户管理、疫苗信息管理、接种预约管理、接种提醒管理、预约分配管理等功能。管理员功能用例图如图

     

    系统总体设计

    系统总体设计即对有关系统全局问题的设计,也就是设计系统总的处理方案,又称系统概要设计。它包括系统规划与系统功能设计等内容。

    智能新冠疫苗接种助手管理系统主要有两类用户。分别是管理员和用户,详细规划如图 

    其中各子模块的主要功能如下:

    1、用户登录:用户进入网页先输入用户名与密码,选择权限登录,用户登录成功,要记录登录的用户名和登录类型。

    2、新用户注册:新用户填写账号、密码、确认密码、姓名、手机、地址、身份证等信息完成注册操作。

    3、查看智能新冠疫苗接种助手信息:用户登录成功后,能够按分类或者查找智能新冠疫苗接种助手信息进行管理。

    4、主页内容管理:管理员登录以后,可以对首页、个人中心、用户管理、疫苗信息管理、接种预约管理、接种提醒管理、预约分配管理进行详细操作。

    系统实现

    首页

    疫苗信息

    疫情动态

    管理员功能模块 

    用户管理 

    疫苗信息管理 

    接种预约管理

     

    预约分配管理

    用户功能模块 

    接种预约管理 

    接种提醒管理 

    部分核心代码 

    上传文件

    1. /**
    2. * 上传文件映射表
    3. */
    4. @RestController
    5. @RequestMapping("file")
    6. @SuppressWarnings({"unchecked","rawtypes"})
    7. public class FileController{
    8. @Autowired
    9. private ConfigService configService;
    10. /**
    11. * 上传文件
    12. */
    13. @RequestMapping("/upload")
    14. public R upload(@RequestParam("file") MultipartFile file, String type,HttpServletRequest request) throws Exception {
    15. if (file.isEmpty()) {
    16. throw new EIException("上传文件不能为空");
    17. }
    18. String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);
    19. String fileName = new Date().getTime()+"."+fileExt;
    20. File dest = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+fileName);
    21. file.transferTo(dest);
    22. /**
    23. * 如果使用idea或者eclipse重启项目,发现之前上传的图片或者文件丢失,将下面一行代码注释打开
    24. * 请将以下的"D:\\ssmpiv99\\src\\main\\webapp\\upload"替换成你本地项目的upload路径,
    25. * 并且项目路径不能存在中文、空格等特殊字符
    26. */
    27. // FileUtils.copyFile(dest, new File("D:\\ssmpiv99\\src\\main\\webapp\\upload"+"/"+fileName)); /**修改了路径以后请将该行最前面的//注释去掉**/
    28. if(StringUtils.isNotBlank(type) && type.equals("1")) {
    29. ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));
    30. if(configEntity==null) {
    31. configEntity = new ConfigEntity();
    32. configEntity.setName("faceFile");
    33. configEntity.setValue(fileName);
    34. } else {
    35. configEntity.setValue(fileName);
    36. }
    37. configService.insertOrUpdate(configEntity);
    38. }
    39. return R.ok().put("file", fileName);
    40. }
    41. /**
    42. * 下载文件
    43. */
    44. @IgnoreAuth
    45. @RequestMapping("/download")
    46. public void download(@RequestParam String fileName, HttpServletRequest request, HttpServletResponse response) {
    47. try {
    48. File file = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+fileName);
    49. if (file.exists()) {
    50. response.reset();
    51. response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName+"\"");
    52. response.setHeader("Cache-Control", "no-cache");
    53. response.setHeader("Access-Control-Allow-Credentials", "true");
    54. response.setContentType("application/octet-stream; charset=UTF-8");
    55. IOUtils.write(FileUtils.readFileToByteArray(file), response.getOutputStream());
    56. }
    57. } catch (IOException e) {
    58. e.printStackTrace();
    59. }
    60. }
    61. }

    接种预约

    1. /**
    2. * 接种预约
    3. * 后端接口
    4. * @author
    5. * @email
    6. * @date 2022-03-25 21:19:02
    7. */
    8. @RestController
    9. @RequestMapping("/jiezhongyuyue")
    10. public class JiezhongyuyueController {
    11. @Autowired
    12. private JiezhongyuyueService jiezhongyuyueService;
    13. /**
    14. * 后端列表
    15. */
    16. @RequestMapping("/page")
    17. public R page(@RequestParam Map<String, Object> params,JiezhongyuyueEntity jiezhongyuyue,
    18. HttpServletRequest request){
    19. String tableName = request.getSession().getAttribute("tableName").toString();
    20. if(tableName.equals("yonghu")) {
    21. jiezhongyuyue.setZhanghao((String)request.getSession().getAttribute("username"));
    22. }
    23. EntityWrapper<JiezhongyuyueEntity> ew = new EntityWrapper<JiezhongyuyueEntity>();
    24. PageUtils page = jiezhongyuyueService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jiezhongyuyue), params), params));
    25. return R.ok().put("data", page);
    26. }
    27. /**
    28. * 前端列表
    29. */
    30. @IgnoreAuth
    31. @RequestMapping("/list")
    32. public R list(@RequestParam Map<String, Object> params,JiezhongyuyueEntity jiezhongyuyue,
    33. HttpServletRequest request){
    34. EntityWrapper<JiezhongyuyueEntity> ew = new EntityWrapper<JiezhongyuyueEntity>();
    35. PageUtils page = jiezhongyuyueService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jiezhongyuyue), params), params));
    36. return R.ok().put("data", page);
    37. }
    38. /**
    39. * 列表
    40. */
    41. @RequestMapping("/lists")
    42. public R list( JiezhongyuyueEntity jiezhongyuyue){
    43. EntityWrapper<JiezhongyuyueEntity> ew = new EntityWrapper<JiezhongyuyueEntity>();
    44. ew.allEq(MPUtil.allEQMapPre( jiezhongyuyue, "jiezhongyuyue"));
    45. return R.ok().put("data", jiezhongyuyueService.selectListView(ew));
    46. }
    47. /**
    48. * 查询
    49. */
    50. @RequestMapping("/query")
    51. public R query(JiezhongyuyueEntity jiezhongyuyue){
    52. EntityWrapper< JiezhongyuyueEntity> ew = new EntityWrapper< JiezhongyuyueEntity>();
    53. ew.allEq(MPUtil.allEQMapPre( jiezhongyuyue, "jiezhongyuyue"));
    54. JiezhongyuyueView jiezhongyuyueView = jiezhongyuyueService.selectView(ew);
    55. return R.ok("查询接种预约成功").put("data", jiezhongyuyueView);
    56. }
    57. /**
    58. * 后端详情
    59. */
    60. @RequestMapping("/info/{id}")
    61. public R info(@PathVariable("id") Long id){
    62. JiezhongyuyueEntity jiezhongyuyue = jiezhongyuyueService.selectById(id);
    63. return R.ok().put("data", jiezhongyuyue);
    64. }
    65. /**
    66. * 前端详情
    67. */
    68. @IgnoreAuth
    69. @RequestMapping("/detail/{id}")
    70. public R detail(@PathVariable("id") Long id){
    71. JiezhongyuyueEntity jiezhongyuyue = jiezhongyuyueService.selectById(id);
    72. return R.ok().put("data", jiezhongyuyue);
    73. }
    74. /**
    75. * 后端保存
    76. */
    77. @RequestMapping("/save")
    78. public R save(@RequestBody JiezhongyuyueEntity jiezhongyuyue, HttpServletRequest request){
    79. jiezhongyuyue.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    80. //ValidatorUtils.validateEntity(jiezhongyuyue);
    81. jiezhongyuyueService.insert(jiezhongyuyue);
    82. return R.ok();
    83. }
    84. /**
    85. * 前端保存
    86. */
    87. @RequestMapping("/add")
    88. public R add(@RequestBody JiezhongyuyueEntity jiezhongyuyue, HttpServletRequest request){
    89. jiezhongyuyue.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    90. //ValidatorUtils.validateEntity(jiezhongyuyue);
    91. jiezhongyuyueService.insert(jiezhongyuyue);
    92. return R.ok();
    93. }
    94. /**
    95. * 修改
    96. */
    97. @RequestMapping("/update")
    98. public R update(@RequestBody JiezhongyuyueEntity jiezhongyuyue, HttpServletRequest request){
    99. //ValidatorUtils.validateEntity(jiezhongyuyue);
    100. jiezhongyuyueService.updateById(jiezhongyuyue);//全部更新
    101. return R.ok();
    102. }
    103. /**
    104. * 删除
    105. */
    106. @RequestMapping("/delete")
    107. public R delete(@RequestBody Long[] ids){
    108. jiezhongyuyueService.deleteBatchIds(Arrays.asList(ids));
    109. return R.ok();
    110. }
    111. /**
    112. * 提醒接口
    113. */
    114. @RequestMapping("/remind/{columnName}/{type}")
    115. public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
    116. @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
    117. map.put("column", columnName);
    118. map.put("type", type);
    119. if(type.equals("2")) {
    120. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    121. Calendar c = Calendar.getInstance();
    122. Date remindStartDate = null;
    123. Date remindEndDate = null;
    124. if(map.get("remindstart")!=null) {
    125. Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
    126. c.setTime(new Date());
    127. c.add(Calendar.DAY_OF_MONTH,remindStart);
    128. remindStartDate = c.getTime();
    129. map.put("remindstart", sdf.format(remindStartDate));
    130. }
    131. if(map.get("remindend")!=null) {
    132. Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
    133. c.setTime(new Date());
    134. c.add(Calendar.DAY_OF_MONTH,remindEnd);
    135. remindEndDate = c.getTime();
    136. map.put("remindend", sdf.format(remindEndDate));
    137. }
    138. }
    139. Wrapper<JiezhongyuyueEntity> wrapper = new EntityWrapper<JiezhongyuyueEntity>();
    140. if(map.get("remindstart")!=null) {
    141. wrapper.ge(columnName, map.get("remindstart"));
    142. }
    143. if(map.get("remindend")!=null) {
    144. wrapper.le(columnName, map.get("remindend"));
    145. }
    146. String tableName = request.getSession().getAttribute("tableName").toString();
    147. if(tableName.equals("yonghu")) {
    148. wrapper.eq("zhanghao", (String)request.getSession().getAttribute("username"));
    149. }
    150. int count = jiezhongyuyueService.selectCount(wrapper);
    151. return R.ok().put("count", count);
    152. }
    153. }

  • 相关阅读:
    最受欢迎的程序员副业排行榜TOP6
    ESP32-SPI接口bl0942驱动
    百亿数据分库分表核心流程详解
    Ajax学习笔记
    C#窗体程序设计笔记:如何调出控件工具箱,并设置控件的属性
    Spring封装的原生WebSocket使用,带组的实现
    json序列化时案例总结
    ASEMI-GBJ5010电源控制柜所用整流桥
    【springboot】11、自定义转换器
    Python数据分析与机器学习48-案例之贷款利润最大化
  • 原文地址:https://blog.csdn.net/m0_49113107/article/details/126272573