文末获取源码
开发语言: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、主页内容管理:管理员登录以后,可以对首页、个人中心、用户管理、疫苗信息管理、接种预约管理、接种提醒管理、预约分配管理进行详细操作。
- /**
- * 上传文件映射表
- */
- @RestController
- @RequestMapping("file")
- @SuppressWarnings({"unchecked","rawtypes"})
- public class FileController{
- @Autowired
- private ConfigService configService;
- /**
- * 上传文件
- */
- @RequestMapping("/upload")
- public R upload(@RequestParam("file") MultipartFile file, String type,HttpServletRequest request) throws Exception {
- if (file.isEmpty()) {
- throw new EIException("上传文件不能为空");
- }
- String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);
- String fileName = new Date().getTime()+"."+fileExt;
- File dest = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+fileName);
- file.transferTo(dest);
- /**
- * 如果使用idea或者eclipse重启项目,发现之前上传的图片或者文件丢失,将下面一行代码注释打开
- * 请将以下的"D:\\ssmpiv99\\src\\main\\webapp\\upload"替换成你本地项目的upload路径,
- * 并且项目路径不能存在中文、空格等特殊字符
- */
- // FileUtils.copyFile(dest, new File("D:\\ssmpiv99\\src\\main\\webapp\\upload"+"/"+fileName)); /**修改了路径以后请将该行最前面的//注释去掉**/
- if(StringUtils.isNotBlank(type) && type.equals("1")) {
- ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile"));
- if(configEntity==null) {
- configEntity = new ConfigEntity();
- configEntity.setName("faceFile");
- configEntity.setValue(fileName);
- } else {
- configEntity.setValue(fileName);
- }
- configService.insertOrUpdate(configEntity);
- }
- return R.ok().put("file", fileName);
- }
-
- /**
- * 下载文件
- */
- @IgnoreAuth
- @RequestMapping("/download")
- public void download(@RequestParam String fileName, HttpServletRequest request, HttpServletResponse response) {
- try {
- File file = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+fileName);
- if (file.exists()) {
- response.reset();
- response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName+"\"");
- response.setHeader("Cache-Control", "no-cache");
- response.setHeader("Access-Control-Allow-Credentials", "true");
- response.setContentType("application/octet-stream; charset=UTF-8");
- IOUtils.write(FileUtils.readFileToByteArray(file), response.getOutputStream());
- }
-
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
-
- }
- /**
- * 接种预约
- * 后端接口
- * @author
- * @email
- * @date 2022-03-25 21:19:02
- */
- @RestController
- @RequestMapping("/jiezhongyuyue")
- public class JiezhongyuyueController {
- @Autowired
- private JiezhongyuyueService jiezhongyuyueService;
-
-
-
-
-
-
- /**
- * 后端列表
- */
- @RequestMapping("/page")
- public R page(@RequestParam Map<String, Object> params,JiezhongyuyueEntity jiezhongyuyue,
- HttpServletRequest request){
-
- String tableName = request.getSession().getAttribute("tableName").toString();
- if(tableName.equals("yonghu")) {
- jiezhongyuyue.setZhanghao((String)request.getSession().getAttribute("username"));
- }
- EntityWrapper<JiezhongyuyueEntity> ew = new EntityWrapper<JiezhongyuyueEntity>();
- PageUtils page = jiezhongyuyueService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jiezhongyuyue), params), params));
- return R.ok().put("data", page);
- }
-
- /**
- * 前端列表
- */
- @IgnoreAuth
- @RequestMapping("/list")
- public R list(@RequestParam Map<String, Object> params,JiezhongyuyueEntity jiezhongyuyue,
- HttpServletRequest request){
- EntityWrapper<JiezhongyuyueEntity> ew = new EntityWrapper<JiezhongyuyueEntity>();
- PageUtils page = jiezhongyuyueService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jiezhongyuyue), params), params));
- return R.ok().put("data", page);
- }
-
- /**
- * 列表
- */
- @RequestMapping("/lists")
- public R list( JiezhongyuyueEntity jiezhongyuyue){
- EntityWrapper<JiezhongyuyueEntity> ew = new EntityWrapper<JiezhongyuyueEntity>();
- ew.allEq(MPUtil.allEQMapPre( jiezhongyuyue, "jiezhongyuyue"));
- return R.ok().put("data", jiezhongyuyueService.selectListView(ew));
- }
-
- /**
- * 查询
- */
- @RequestMapping("/query")
- public R query(JiezhongyuyueEntity jiezhongyuyue){
- EntityWrapper< JiezhongyuyueEntity> ew = new EntityWrapper< JiezhongyuyueEntity>();
- ew.allEq(MPUtil.allEQMapPre( jiezhongyuyue, "jiezhongyuyue"));
- JiezhongyuyueView jiezhongyuyueView = jiezhongyuyueService.selectView(ew);
- return R.ok("查询接种预约成功").put("data", jiezhongyuyueView);
- }
-
- /**
- * 后端详情
- */
- @RequestMapping("/info/{id}")
- public R info(@PathVariable("id") Long id){
- JiezhongyuyueEntity jiezhongyuyue = jiezhongyuyueService.selectById(id);
- return R.ok().put("data", jiezhongyuyue);
- }
-
- /**
- * 前端详情
- */
- @IgnoreAuth
- @RequestMapping("/detail/{id}")
- public R detail(@PathVariable("id") Long id){
- JiezhongyuyueEntity jiezhongyuyue = jiezhongyuyueService.selectById(id);
- return R.ok().put("data", jiezhongyuyue);
- }
-
-
-
-
- /**
- * 后端保存
- */
- @RequestMapping("/save")
- public R save(@RequestBody JiezhongyuyueEntity jiezhongyuyue, HttpServletRequest request){
- jiezhongyuyue.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
- //ValidatorUtils.validateEntity(jiezhongyuyue);
-
- jiezhongyuyueService.insert(jiezhongyuyue);
- return R.ok();
- }
-
- /**
- * 前端保存
- */
- @RequestMapping("/add")
- public R add(@RequestBody JiezhongyuyueEntity jiezhongyuyue, HttpServletRequest request){
- jiezhongyuyue.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
- //ValidatorUtils.validateEntity(jiezhongyuyue);
-
- jiezhongyuyueService.insert(jiezhongyuyue);
- return R.ok();
- }
-
- /**
- * 修改
- */
- @RequestMapping("/update")
- public R update(@RequestBody JiezhongyuyueEntity jiezhongyuyue, HttpServletRequest request){
- //ValidatorUtils.validateEntity(jiezhongyuyue);
- jiezhongyuyueService.updateById(jiezhongyuyue);//全部更新
- return R.ok();
- }
-
-
- /**
- * 删除
- */
- @RequestMapping("/delete")
- public R delete(@RequestBody Long[] ids){
- jiezhongyuyueService.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<JiezhongyuyueEntity> wrapper = new EntityWrapper<JiezhongyuyueEntity>();
- 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("zhanghao", (String)request.getSession().getAttribute("username"));
- }
-
- int count = jiezhongyuyueService.selectCount(wrapper);
- return R.ok().put("count", count);
- }
-
-
-
-
-
-
-
-
- }