登录
首页 » Java » 酒店预定管理系统(源码+数据库+文档)

酒店预定管理系统(源码+数据库+文档)

于 2021-05-06 发布
0 201
下载积分: 1 下载次数: 0

代码说明:

酒店预订管理系统 一、后台需求列表清单 1、预订管理(Reservation) 1.1 查询预订 (Search) 1.2 新建预订(new) 1.3 修改预订 (modify) 1.4 取消预订 (cancel) 2、房价类型管理(Rate Type) 2.1 查询 (search) 2.2 新建(new) 2.3 修改 (modify) 2.4 删除 (delete) 3、房间类型管理(Room Type) 3.1 查询(search) 3.2 新建(new) 3.3 修改(modify) 3.4 删除(delete) 4、房价管理(Rate)(批量操作) 4.1 房价查询 (Rate Query) 4.2 房价规则查询(Rate Rule Query) 4.3 新增房价规则 (add) 4.4 修改房价规则(modify) 4.5 删除房价规则 (delete) 5、房态管理(Room Status)(批量操作) 5.1 查询房态(search) 5.2 新增规则(add) 5.3 修改规则(modify) 5.4 删除规则(delete) 5.5 查询规则(search) 6、员工管理(Staff) 6.1 查询(search) 6.2 新建(new) 6.3 修改(modify) 6.4 删除(delete)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Java Coding Problems - Improve your Java Programming skills by solving real-world coding challenges.epub
    The super-fast evolution of the JDK between versions 8 and 12 has increased the learning curve of modern Java, therefore has increased the time needed for placing developers in the Plateau of Productivity. Its new features and concepts can be adopted to solve a variety of modern-day problems. This book enables you to adopt an objective approach to common problems by explaining the correct practices and decisions with respect to complexity, performance, readability, and more.Java Coding Problems will help you complete your daily tasks and meet deadlines. You can count on the 300 applications containing 1,000 examples in this book to cover the common and fundamental areas of interest: strings, numbers, arrays, collections, data structures, date and time, immutability, type inference, Optional, Java I/O, Java Reflection, functional programming, concurrency and the HTTP 
    2020-03-03下载
    积分:1
  • ios 刮刮卡
    ios 刮刮卡
    2014-01-15下载
    积分:1
  • java实验室预约管理系统(源码+数据库脚本)
    随着高校教学资源逐步开发,高校教育资源的应用种类逐步增多。而实验室作为高校基本教育资源之一,与日常教学工作开展、课堂项目实践有着密切联系。由此,如何借助新时期技术,加强高校实验室应用数据信息程序开发,在高校智能化管理程序推广中占有基础性地位。该软件是以Java语言为实现预言。其功能在系统内部有源代码直接完成,操作人员只需输入一些简单的汉字,数字,即可达到自己的目标。 登陆账号:admin 密码:123456 package com.company; import com.company.Bean.Student;import com.company.Bean.Teacher;import com.company.Bean.User;import com.company.DB.DB; import javax.swing.*;import java.awt.event.ActionEvent;import java.awt.event.ActionListener; public class Main extends JFrame {    private JPanel p;    private JLabel lblName,lblPwd,lblRole;    private JTextField txtName;    private JPasswordField txtPwd;    private JButton btnOk,btnCancle;    String[] s = {"学生","教师","管理员"};    private JComboBox comboBox;    public Main(){        super("用户登录界面");        p = new JPanel();        p.setLayout(null);        lblRole=new JLabel("角色:");        comboBox=new JComboBox(s);        lblName = new JLabel("账户:");        lblPwd = new JLabel("密码:");        txtName = new JTextField(20);        txtPwd = new JPasswordField(20);        btnOk = new JButton("登录");        btnCancle = new JButton("取消");        //注册确定按钮的事件处理        btnOk.addActionListener(new ActionListener() {            @Override            public void actionPerformed(ActionEvent e) {                String strName = txtName.getText();                String strPwd = new String(txtPwd.getPassword());                System.out.println("用户名:" strName "密码:" strPwd);             }        });        //注册取消按钮的事件处理        btnCancle.addActionListener(new ActionListener() {             @Override            public void actionPerformed(ActionEvent e) {                //清空                txtName.setText("");                txtPwd.setText("");             }        });        lblRole.setBounds(90,50,60,25);        comboBox.setBounds(130,50,140,25);        lblName.setBounds(90,80,60,25);        txtName.setBounds(130,80,140,25);        lblPwd.setBounds(90,110,60,25);        txtPwd.setBounds(130,110,140,25);        btnOk.setBounds(130,150,60,25);        btnCancle.setBounds(200,150,60,25);        p.add(lblRole);        p.add(comboBox);        p.add(lblName);        p.add(txtName);        p.add(lblPwd);        p.add(txtPwd);        p.add(btnOk);        p.add(btnCancle);        this.add(p);        this.setSize(400,300);        this.setLocation(300,300);        //设置窗体不可改变大小        this.setResizable(false);        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        btnOk.addActionListener(new ActionListener() {            @Override            public void actionPerformed(ActionEvent e) {               String account =txtName.getText().trim();               String password=txtPwd.getText().trim();               String role=null;               if(comboBox.getSelectedItem().equals("管理员")){                   role="admin";               }               else if(comboBox.getSelectedItem().equals("学生")) {                   role="student";               }               else{                   role="teacher";               }                if(role.equals("admin")){                    User user=new User(account,password);                    if (DB.Login(user)) {                        JOptionPane.showMessageDialog(null, "登录成功", "", JOptionPane.PLAIN_MESSAGE);                        AdminMain adminMain = new AdminMain();                        adminMain.setVisible(true);                        Main.this.setVisible(false);                    }                      else {                        JOptionPane.showMessageDialog(null,"账号密码错误", "", JOptionPane.PLAIN_MESSAGE);                    }                }                else if (role.equals("student")){                    Student student=new Student(account,password);                    if(DB.studentLogin(student)){                        StudentMain studentMain=new  StudentMain();                        studentMain.setVisible(true);                        Main.this.setVisible(false);                        JOptionPane.showMessageDialog(null, "登录成功", "", JOptionPane.PLAIN_MESSAGE);                    }                    else {                        JOptionPane.showMessageDialog(null,"账号密码错误", "", JOptionPane.PLAIN_MESSAGE);                    }                }                else if (role.equals("teacher")){                   Teacher teacher=new Teacher(account,password);                    if(DB.teacherLogin(teacher)){                        TeacherMain teacherMain=new TeacherMain();                        teacherMain.setVisible(true);                        Main.this.setVisible(false);                        JOptionPane.showMessageDialog(null, "登录成功", "", JOptionPane.PLAIN_MESSAGE);                    }                    else {                        JOptionPane.showMessageDialog(null,"账号密码错误", "", JOptionPane.PLAIN_MESSAGE);                    }                }            }        });        btnCancle.addActionListener(new ActionListener() {            @Override            public void actionPerformed(ActionEvent e) {                            }        });    }    public static void main(String[] args) { // write your code here        Main main=new Main();        main.setVisible(true);     }}
    2020-12-12下载
    积分:1
  • 火车订票系统(源码+数据库+课设报告)
    【实例简介】 火车购票系统
    2021-08-05 00:30:54下载
    积分:1
  • javase 李兴华全套笔记(非常适合java的初学者)
    包括李新华javase视频讲解时所有的内容,非常全面,非常适合java的初学者。
    2019-09-05下载
    积分:1
  • Java 3D饼图透明度(提高篇-实例173).zip
    Java 3D饼图透明度(提高篇-实例173).zip
    2019-10-03下载
    积分:1
  • Java 序列化与反序列化对象(篇-实例451).zip
    实例中如用到数据库,请到这里下载 https://www.haolizi.net/example/view_30457.html
    2019-10-02下载
    积分:1
  • swagger自动生成接口文档(word版)
    解放双手,从此不用再写接口文档springboot  直接在项目中修改swagger的路径  启动之后   登录http://127.0.0.1:8080/toWord   下载文档即可
    2020-11-02下载
    积分:1
  • 前后端分离的后台管理系统源码(eosadmin)
    项目基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前后端分离的后台管理系统,项目采用分模块开发方式, 权限控制采用 RBAC,支持数据字典与数据权限管理,支持一键生成前后端代码,支持动态路由,Bug 反馈移步Github 主要特性 使用最新技术栈,社区资源丰富。 高效率开发,代码生成器可一键生成前后端代码 支持数据字典,可方便地对一些状态进行管理 支持接口限流,避免恶意请求导致服务层压力过大 支持接口级别的功能权限与数据权限,可自定义操作 自定义权限注解与匿名接口注解,可快速对接口拦截与放行 对一些常用地前端组件封装:表格数据请求、数据字典等 前后端统一异常拦截处理,统一输出异常,避免繁琐的判断 支持在线用户管理与服务器性能监控,支持限制单用户登录 支持运维管理,可方便地对远程服务器的应用进行部署与管理 系统功能 用户管理:提供用户的相关配置,新增用户后,默认密码为123456 角色管理:对权限与菜单进行分配,可根据部门设置角色的数据权限 菜单管理:已实现菜单动态路由,后端可配置化,支持多级菜单 部门管理:可配置系统组织架构,树形表格展示 岗位管理:配置各个部门的职位 字典管理:可维护常用一些固定的数据,如:状态,性别等 系统日志:记录用户操作日志与异常日志,方便开发人员定位拍错 SQL监控:采用druid 监控数据库访问性能,默认用户名admin,密码123456 定时任务:整合Quartz做定时任务,加入任务日志,任务运行情况一目了然 代码生成:高灵活度生成前后端代码,减少大量重复的工作任务 邮件工具:配合富文本,发送html格式的邮件 免费图床:使用sm.ms图床,用作公共图片上传使用,该图床不怎么稳定,不太建议使用 七牛云存储:可同步七牛云存储的数据到系统,无需登录七牛云直接操作云数据 支付宝支付:整合了支付宝支付并且提供了测试账号,可自行测试 服务监控:监控服务器的负载情况 运维管理:一键部署你的应用 项目结构 项目采用按功能分模块的开发方式,结构如下 eladmin-common 为系统的公共模块,各种工具类,公共配置存在该模块 eladmin-system 为系统核心模块也是项目入口模块,也是最终需要打包部署的模块 eladmin-logging 为系统的日志模块,其他模块如果需要记录日志需要引入该模块 eladmin-tools 为第三方工具模块,包含:图床、邮件、云存储、本地存储、支付宝 eladmin-generator 为系统的代码生成模块,代码生成的模板在 system 模块中
    2020-12-08下载
    积分:1
  • Java文件切割器源代码
    Java文件切割器源代码
    2014-12-13下载
    积分:1
  • 696516资源总数
  • 106409会员总数
  • 8今日下载