0
点赞
收藏
分享

微信扫一扫

百度智能云参与信通院多项边缘计算标准编制,「大模型时代下云边端协同 AI 发展研讨会」成功召开

家政服务管理平台

目录

基于SprinBoot+vue的家政服务管理平台

一、前言

二、系统设计

三、系统功能设计 

1前台模块设计

2后台功能模块

5.2.1管理员功能模块

5.2.2用户功能模块

5.2.3服务人员功能模块

四、数据库设计

 五、核心代码 

六、论文参考

七、最新计算机毕设选题推荐

八、源码获取:


基于SprinBoot+vue的家政服务管理平台

家政服务管理平台采用了B/S结构,JAVA作为开发语言,数据库采用了B/S结构,Mysql数据库进行开发。该系统包括前台操作和后台管理两个部分,一方面,为用户提供首页、服务信息、公告信息、留言反馈、个人中心、后台管理等功能;另一方面,为管理员提供首页、个人中心、用户管理、服务人员管理、服务信息管理、服务类型管理、服务预约管理、服务取消管理、服务分配管理、服务进度管理、评价信息管理、留言反馈、系统管理等功能。

【关键词】家政服务;JAVA;B/S结构

系统功能结构如图

1前台模块设计

系统首页的主要功能展示了首页、服务信息、公告信息、留言反馈、个人中心、后台管理等,用户可根据权限进行相应操作。运行结果如图5-1所示。

图5-1 系统首页界面图

2后台功能模块

用户进入系统前在登录页面根据要求填写用户名、密码和验证码,选择角色等信息,点击登录进行登录操作,如图5-5所示。

图5-5后台登录界面图

5.2.1管理员功能模块

管理员登录系统后,可以对首页、个人中心、用户管理、服务人员管理、服务信息管理、服务类型管理、服务预约管理、服务取消管理、服务分配管理、服务进度管理、评价信息管理、留言反馈、系统管理等功能进行相应的操作管理,如图5-6所示。

图5-6管理员功能界面图

5.2.2用户功能模块

用户登录系统后,可以对首页、个人中心、服务预约管理、服务分配管理、服务取消管理、服务进度管理、评价信息管理、留言反馈、我的收藏管理等功能进行相应的操作,如图5-17所示。

图5-17用户功能界面图

5.2.3服务人员功能模块

服务人员登录系统后,可以对首页、个人中心、服务分配管理、服务进度管理、评价信息管理等功能进行相应的操作,如图5-23所示。

图5-23服务人员功能界面图

服务信息属性图如图4-2所示。

图4-2服务信息实体属性图

数据库表的设计,如下表:

表4-1:服务信息

字段名称

类型

长度

字段说明

主键

默认值

id

bigint

主键

主键

addtime

timestamp

创建时间

CURRENT_TIMESTAMP

fuwumingcheng

varchar

200

服务名称

fuwutupian

varchar

200

服务图片

fuwuleixing

varchar

200

服务类型

hetongxinxi

varchar

200

合同信息

fuwujiage

varchar

200

服务价格

fuwujianjie

longtext

4294967295

服务简介

fuwuxiangqing

longtext

4294967295

服务详情

faburiqi

date

发布日期

package com.service.impl;

import com.utils.StringUtil;
import com.service.DictionaryService;
import com.utils.ClazzDiff;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.lang.reflect.Field;
import java.util.*;
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.transaction.annotation.Transactional;
import com.utils.PageUtils;
import com.utils.Query;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import com.dao.FangwuDao;
import com.entity.FangwuEntity;
import com.service.FangwuService;
import com.entity.view.FangwuView;


@Service("fangwuService")
@Transactional
public class FangwuServiceImpl extends ServiceImpl<FangwuDao, FangwuEntity> implements FangwuService {

@Override
public PageUtils queryPage(Map<String,Object> params) {
Page<FangwuView> page =new Query<FangwuView>(params).getPage();
page.setRecords(baseMapper.selectListView(page,params));
return new PageUtils(page);
}


}



package com.service.impl;

import com.utils.StringUtil;
import com.service.DictionaryService;
import com.utils.ClazzDiff;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.lang.reflect.Field;
import java.util.*;
import com.baomidou.mybatisplus.plugins.Page;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import org.springframework.transaction.annotation.Transactional;
import com.utils.PageUtils;
import com.utils.Query;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import com.dao.FeiyongDao;
import com.entity.FeiyongEntity;
import com.service.FeiyongService;
import com.entity.view.FeiyongView;


@Service("feiyongService")
@Transactional
public class FeiyongServiceImpl extends ServiceImpl<FeiyongDao, FeiyongEntity> implements FeiyongService {

@Override
public PageUtils queryPage(Map<String,Object> params) {
Page<FeiyongView> page =new Query<FeiyongView>(params).getPage();
page.setRecords(baseMapper.selectListView(page,params));
return new PageUtils(page);
}


}


最新计算机软件毕业设计选题大全-CSDN博客

举报

相关推荐

0 条评论