• SpringBoot+Vue项目私人健身与教练预约管理系统


    文末获取源码

    开发语言:Java

    框架:springboot

    JDK版本:JDK1.8

    服务器:tomcat7

    数据库:mysql 5.7/8.0

    数据库工具:Navicat11

    开发软件:eclipse/myeclipse/idea

    Maven包:Maven3.3.9

    浏览器:谷歌浏览器

    前言介绍   

    任何系统都要遵循系统设计的基本流程,本系统也不例外,同样需要经过市场调研,需求分析,概要设计,详细设计,编码,测试这些步骤,基于java技术、springboot框架、B/S机构、Mysql数据库设计并实现了私人健身与教练预约管理系统。 

    本系统主要包括管理员,用户和教练三个角色组成,主要包括以下功能:

    (1)前台:首页、健身项目、教练信息、健身资讯、个人中心、后台管理 。

    (2)管理员:首页、个人中心、用户管理、教练管理、健身项目管理、项目分类管理、教练信息管理、教练预约管理、系统管理。

    (3)用户:首页、个人中心、教练预约管理。

    (4)教练:首页、个人中心、教练信息管理、教练预约管理。

     

    功能结构

    为了更好的去理清本系统整体思路,对该系统以结构图的形式表达出来,设计实现该私人健身与教练预约管理系统的功能结构图如下所示: 

     

    系统功能模块

    私人健身与教练预约管理系统,在系统首页可以查看首页,健身项目,教练信息,健身资讯,个人中心,后台管理等内容,并进行详细操作;如图

    用户注册

    在用户注册页面通过填写账号,密码,确认密码,姓名,手机,地址等信息进行注册操作,如图 

    健身项目

    在健身项目页面可以查看项目名称,项目类型,健身效果,点击次数等内容,并进行收藏操作,如图

    教练信息

    个人中心

    在个人中心页面通过填写账号,密码,姓名,性别,手机,地址,图片等内容进行更新信息操作,还可以进行我的收藏操作;如图 

    后台功能模块

    后台登录,用户进入系统前在登录页面根据要求填写用户名和密码,选择角色等信息,点击登录进行登录操作,如图 

    管理员功能

    管理员登录系统后,可以对首页,个人中心,用户管理,教练管理,健身项目管理,项目分类,教练信息管理,教练预约管理,系统管理等功能进行相应的操作,如图 

    用户管理

    在用户管理页面可以对索引,账号,姓名,性别,手机,地址,图片等内容进行详情,修改和删除等操作,如图 

    教练管理

    在教练管理页面可以对索引,教练编号,教练姓名,性别,年龄,教练等级,联系电话等信息进行详情,修改和删除等操作,如图 

    健身项目管理

    在健身项目管理页面可以对索引,项目名称,项目类型,健身视频,项目图片等内容进行详情,修改,查看评论和删除等操作,如图 

    教练信息管理

    在教练信息管理页面可以对索引,教练编号,教练姓名,性别,年龄,教练等级,联系电话,预约状态,教练图片等内容进行详情,查看评论和删除等操作;如图 

    教练预约管理

    在教练预约管理页面可以对索引,教练编号,教练姓名,预约时间,预约说明,账号,姓名,手机,审核回复,审核状态等内容进行详情,删除操作;如图 

    用户功能

    用户登录进入系统可以对首页,个人中心,教练预约管理等功能进行相应操作,如图 

    教练功能

    教练登录进入系统可以对首页,个人中心,教练信息管理,教练预约管理等功能进行相应操作,如图 

    教练信息管理

    在教练信息管理页面可以对索引,教练编号,教练姓名,性别,年龄,教练等级,联系电话,预约状态,教练图片等内容进行详情,查看评论和删除等操作;如图 

    部分核心代码  

    1. /**
    2. * 教练预约
    3. * 后端接口
    4. * @author
    5. * @email
    6. * @date 2022-03-17 11:45:26
    7. */
    8. @RestController
    9. @RequestMapping("/jiaolianyuyue")
    10. public class JiaolianyuyueController {
    11. @Autowired
    12. private JiaolianyuyueService jiaolianyuyueService;
    13. /**
    14. * 后端列表
    15. */
    16. @RequestMapping("/page")
    17. public R page(@RequestParam Map<String, Object> params,JiaolianyuyueEntity jiaolianyuyue,
    18. HttpServletRequest request){
    19. String tableName = request.getSession().getAttribute("tableName").toString();
    20. if(tableName.equals("jiaolian")) {
    21. jiaolianyuyue.setJiaolianbianhao((String)request.getSession().getAttribute("username"));
    22. }
    23. if(tableName.equals("yonghu")) {
    24. jiaolianyuyue.setZhanghao((String)request.getSession().getAttribute("username"));
    25. }
    26. EntityWrapper<JiaolianyuyueEntity> ew = new EntityWrapper<JiaolianyuyueEntity>();
    27. PageUtils page = jiaolianyuyueService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jiaolianyuyue), params), params));
    28. return R.ok().put("data", page);
    29. }
    30. /**
    31. * 前端列表
    32. */
    33. @IgnoreAuth
    34. @RequestMapping("/list")
    35. public R list(@RequestParam Map<String, Object> params,JiaolianyuyueEntity jiaolianyuyue,
    36. HttpServletRequest request){
    37. EntityWrapper<JiaolianyuyueEntity> ew = new EntityWrapper<JiaolianyuyueEntity>();
    38. PageUtils page = jiaolianyuyueService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, jiaolianyuyue), params), params));
    39. return R.ok().put("data", page);
    40. }
    41. /**
    42. * 列表
    43. */
    44. @RequestMapping("/lists")
    45. public R list( JiaolianyuyueEntity jiaolianyuyue){
    46. EntityWrapper<JiaolianyuyueEntity> ew = new EntityWrapper<JiaolianyuyueEntity>();
    47. ew.allEq(MPUtil.allEQMapPre( jiaolianyuyue, "jiaolianyuyue"));
    48. return R.ok().put("data", jiaolianyuyueService.selectListView(ew));
    49. }
    50. /**
    51. * 查询
    52. */
    53. @RequestMapping("/query")
    54. public R query(JiaolianyuyueEntity jiaolianyuyue){
    55. EntityWrapper< JiaolianyuyueEntity> ew = new EntityWrapper< JiaolianyuyueEntity>();
    56. ew.allEq(MPUtil.allEQMapPre( jiaolianyuyue, "jiaolianyuyue"));
    57. JiaolianyuyueView jiaolianyuyueView = jiaolianyuyueService.selectView(ew);
    58. return R.ok("查询教练预约成功").put("data", jiaolianyuyueView);
    59. }
    60. /**
    61. * 后端详情
    62. */
    63. @RequestMapping("/info/{id}")
    64. public R info(@PathVariable("id") Long id){
    65. JiaolianyuyueEntity jiaolianyuyue = jiaolianyuyueService.selectById(id);
    66. return R.ok().put("data", jiaolianyuyue);
    67. }
    68. /**
    69. * 前端详情
    70. */
    71. @IgnoreAuth
    72. @RequestMapping("/detail/{id}")
    73. public R detail(@PathVariable("id") Long id){
    74. JiaolianyuyueEntity jiaolianyuyue = jiaolianyuyueService.selectById(id);
    75. return R.ok().put("data", jiaolianyuyue);
    76. }
    77. /**
    78. * 后端保存
    79. */
    80. @RequestMapping("/save")
    81. public R save(@RequestBody JiaolianyuyueEntity jiaolianyuyue, HttpServletRequest request){
    82. jiaolianyuyue.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    83. //ValidatorUtils.validateEntity(jiaolianyuyue);
    84. jiaolianyuyueService.insert(jiaolianyuyue);
    85. return R.ok();
    86. }
    87. /**
    88. * 前端保存
    89. */
    90. @RequestMapping("/add")
    91. public R add(@RequestBody JiaolianyuyueEntity jiaolianyuyue, HttpServletRequest request){
    92. jiaolianyuyue.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    93. //ValidatorUtils.validateEntity(jiaolianyuyue);
    94. jiaolianyuyueService.insert(jiaolianyuyue);
    95. return R.ok();
    96. }
    97. /**
    98. * 修改
    99. */
    100. @RequestMapping("/update")
    101. public R update(@RequestBody JiaolianyuyueEntity jiaolianyuyue, HttpServletRequest request){
    102. //ValidatorUtils.validateEntity(jiaolianyuyue);
    103. jiaolianyuyueService.updateById(jiaolianyuyue);//全部更新
    104. return R.ok();
    105. }
    106. /**
    107. * 删除
    108. */
    109. @RequestMapping("/delete")
    110. public R delete(@RequestBody Long[] ids){
    111. jiaolianyuyueService.deleteBatchIds(Arrays.asList(ids));
    112. return R.ok();
    113. }
    114. /**
    115. * 提醒接口
    116. */
    117. @RequestMapping("/remind/{columnName}/{type}")
    118. public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request,
    119. @PathVariable("type") String type,@RequestParam Map<String, Object> map) {
    120. map.put("column", columnName);
    121. map.put("type", type);
    122. if(type.equals("2")) {
    123. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    124. Calendar c = Calendar.getInstance();
    125. Date remindStartDate = null;
    126. Date remindEndDate = null;
    127. if(map.get("remindstart")!=null) {
    128. Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
    129. c.setTime(new Date());
    130. c.add(Calendar.DAY_OF_MONTH,remindStart);
    131. remindStartDate = c.getTime();
    132. map.put("remindstart", sdf.format(remindStartDate));
    133. }
    134. if(map.get("remindend")!=null) {
    135. Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
    136. c.setTime(new Date());
    137. c.add(Calendar.DAY_OF_MONTH,remindEnd);
    138. remindEndDate = c.getTime();
    139. map.put("remindend", sdf.format(remindEndDate));
    140. }
    141. }
    142. Wrapper<JiaolianyuyueEntity> wrapper = new EntityWrapper<JiaolianyuyueEntity>();
    143. if(map.get("remindstart")!=null) {
    144. wrapper.ge(columnName, map.get("remindstart"));
    145. }
    146. if(map.get("remindend")!=null) {
    147. wrapper.le(columnName, map.get("remindend"));
    148. }
    149. String tableName = request.getSession().getAttribute("tableName").toString();
    150. if(tableName.equals("jiaolian")) {
    151. wrapper.eq("jiaolianbianhao", (String)request.getSession().getAttribute("username"));
    152. }
    153. if(tableName.equals("yonghu")) {
    154. wrapper.eq("zhanghao", (String)request.getSession().getAttribute("username"));
    155. }
    156. int count = jiaolianyuyueService.selectCount(wrapper);
    157. return R.ok().put("count", count);
    158. }
    159. }
    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) throws Exception {
    15. if (file.isEmpty()) {
    16. throw new EIException("上传文件不能为空");
    17. }
    18. String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1);
    19. File path = new File(ResourceUtils.getURL("classpath:static").getPath());
    20. if(!path.exists()) {
    21. path = new File("");
    22. }
    23. File upload = new File(path.getAbsolutePath(),"/upload/");
    24. if(!upload.exists()) {
    25. upload.mkdirs();
    26. }
    27. String fileName = new Date().getTime()+"."+fileExt;
    28. File dest = new File(upload.getAbsolutePath()+"/"+fileName);
    29. file.transferTo(dest);
    30. /**
    31. * 如果使用idea或者eclipse重启项目,发现之前上传的图片或者文件丢失,将下面一行代码注释打开
    32. * 请将以下的"D:\\springbootq33sd\\src\\main\\resources\\static\\upload"替换成你本地项目的upload路径,
    33. * 并且项目路径不能存在中文、空格等特殊字符
    34. */
    35. // FileUtils.copyFile(dest, new File("D:\\springbootq33sd\\src\\main\\resources\\static\\upload"+"/"+fileName)); /**修改了路径以后请将该行最前面的//注释去掉**/
    36. if(StringUtils.isNotBlank(type) && type.equals("1")) {
    37. ConfigEntity configEntity = configService.selectOne(new EntityWrapper().eq("name", "faceFile"));
    38. if(configEntity==null) {
    39. configEntity = new ConfigEntity();
    40. configEntity.setName("faceFile");
    41. configEntity.setValue(fileName);
    42. } else {
    43. configEntity.setValue(fileName);
    44. }
    45. configService.insertOrUpdate(configEntity);
    46. }
    47. return R.ok().put("file", fileName);
    48. }
    49. /**
    50. * 下载文件
    51. */
    52. @IgnoreAuth
    53. @RequestMapping("/download")
    54. public ResponseEntity<byte[]> download(@RequestParam String fileName) {
    55. try {
    56. File path = new File(ResourceUtils.getURL("classpath:static").getPath());
    57. if(!path.exists()) {
    58. path = new File("");
    59. }
    60. File upload = new File(path.getAbsolutePath(),"/upload/");
    61. if(!upload.exists()) {
    62. upload.mkdirs();
    63. }
    64. File file = new File(upload.getAbsolutePath()+"/"+fileName);
    65. if(file.exists()){
    66. /*if(!fileService.canRead(file, SessionManager.getSessionUser())){
    67. getResponse().sendError(403);
    68. }*/
    69. HttpHeaders headers = new HttpHeaders();
    70. headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
    71. headers.setContentDispositionFormData("attachment", fileName);
    72. return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers, HttpStatus.CREATED);
    73. }
    74. } catch (IOException e) {
    75. e.printStackTrace();
    76. }
    77. return new ResponseEntity<byte[]>(HttpStatus.INTERNAL_SERVER_ERROR);
    78. }
    79. }

  • 相关阅读:
    shell去除空行的办法
    计算机网络--网络层
    MemFire案例-政务应急物联网实时监测预警项目
    Kubernetes(K8S)的三种探针
    C Primer Plus(6) 中文版 第5章 运算符、表达式和语句 5.6 带参数的函数
    如何找出你的Windows 10的内部版本和版本号?这里提供两种方法
    Eureka介绍与使用
    A6120 Emerson 机箱地震振动监测器
    大数据 安装配置centOS
    redis的高可用
  • 原文地址:https://blog.csdn.net/m0_49113107/article/details/126120661