freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

航空機票預訂系統(tǒng)的開發(fā)與應用設計方案-資料下載頁

2025-05-06 01:25本頁面
  

【正文】 插入記錄 publicboolean add(Faretype fare)。 //更新記錄 publicboolean update(String hql)。 //刪除記錄 publicboolean del(String hql)。}、IBookinformationDAO接口package DAO。//編輯者:DDDimport 。import 。publicinterface IBookinformationDAO { // 查詢所有訂票信息 public List QueryAll(int start, int limit)。 // 獲取記錄總數(shù) publicint QueryCount()。 //插入記錄 publicboolean add(Bookinformation flightpany)。 //更新記錄 publicboolean update(String hql)。 //刪除記錄 publicboolean delete(String hql)。 //獲得航空公司名稱 public List search_Name(String hql)。 //獲得訂票客戶的身份證號碼 public List search_cusId(String hql)。 //獲得特定身份證號碼客戶信息 public List search_cusId_information(String hql)。 //個人信息修改 publicboolean individual_update(String hql)。 //密碼修改 publicboolean password_update(String hql)。}、IFlightinformationDAO接口/*==============*//* 編輯者:EEE *//*============*/package DAO。import 。import 。public interface IFlightinformationDAO { // 查詢所有航班公司信息 public List QueryAll(int start, int limit)。 //查詢相應的航班信息 public List QueryInf(String sql)。 // 獲取記錄總數(shù) public int QueryCount()。 //獲取相應艙位的人數(shù) public int GetNumber(String sql)。 //獲取相應的記錄總數(shù)(分頁) public int QueryCounts(String sql)。 //是否可插入與更新 public boolean addornot(String hql)。 //插入記錄 public boolean add(Flightinformation flightinfomation)。 //更新記錄 public boolean update(String hql)。 //刪除記錄 public boolean delete(String hql)。 //取得航空代碼 public List GetCode()。 //取得飛機機型 public List GetairType()。}、IAirtypeDAO接口package DAO。//編輯者:FFFimport 。import 。//飛機機型信息接口publicinterface IAirtypeDAO { public List QueryAll(int start, int limit)。// 查詢所有飛機機型信息 public List QueryInf(String sql)。//查詢相應的飛機機型信息 publicint QueryCount()。// 獲取記錄總數(shù) publicint QueryCounts(String sql)。//獲取相應的記錄總數(shù)(分頁) publicboolean add(Airtype airtype)。//插入記錄 publicboolean update(String hql)。//更新記錄 publicboolean delete(String hql)。//刪除記錄}六、數(shù)據(jù)庫設計說明書數(shù)據(jù)庫結構設計(參照 概要設計說明書的數(shù)據(jù)庫結構設計)數(shù)據(jù)庫的安全保密性設計Airline Reservation System有3種不同的使用者,包括高級管理人員、管理人員、注冊人員3種。對于3種使用者通過不同用戶名登入,系統(tǒng)通過對用戶名的識別來區(qū)分不同的訪問者,系統(tǒng)針對不同的訪問者賦予不同的權限。高級管理人員負責日常的用戶管理工作,管理所有管理人員用戶、注冊人員用戶,可能對用戶進行停用。管理人員負責航空訂票、退票等日常業(yè)務。注冊人員可能通過相關網(wǎng)站進行網(wǎng)上預訂票。數(shù)據(jù)庫優(yōu)化數(shù)據(jù)庫中建立了相關索引,進行時間、帳戶、航班訂票信息等多方面的快速搜索,大大提高了系統(tǒng)在數(shù)據(jù)交互的速度。系統(tǒng)不局限于mysql數(shù)據(jù)庫(此處采用mysql數(shù)據(jù)庫),系統(tǒng)通過Hibernate可以支持多數(shù)據(jù)庫,同時可以在多平臺上運行,如windows、linux、unix等。數(shù)據(jù)庫源代碼create database db_airline。/*==============================================================*//* Table: bank *//*==============================================================*/create table bank( ban_account numeric(20) not null, ban_pwd numeric(20) not null, ban_money double not null, primary key (ban_account)) ENGINE=InnoDB DEFAULT CHARSET=utf8。/*==============================================================*//* Table: manager *//*==============================================================*/create table manager( man_autoid int auto_increment not null, man_account varchar(20) not null, man_pwd varchar(20) not null, man_id numeric(20) not null, man_sex varchar(2) not null, man_telnumber varchar(20) not null, man_ varchar(50) not null, man_register date not null, flag boolean, primary key (man_autoid)) ENGINE=InnoDB DEFAULT CHARSET=utf8。/*==============================================================*//* Index: man_account *//*==============================================================*/create unique index man_account on manager( man_account)。/*==============================================================*//* Table: faretype *//*==============================================================*/create table faretype( far_id smallint(2) not null, far_type varchar(20) not null, far_discount double not null, far_integral int(4) not null, primary key (far_id)) ENGINE=InnoDB DEFAULT CHARSET=utf8。/*==============================================================*//* Table: customer *//*==============================================================*/create table customer( cus_autoid bigint auto_increment not null, cus_account varchar(20) not null, cus_pwd varchar(20) not null, cus_id numeric(20) not null, cus_sex varchar(2) not null, cus_telnumber varchar(20) not null, cus_ varchar(50) not null, cus_time date not null, cus_integral int(4) not null, far_id smallint(2) not null, flag boolean not null, primary key (cus_autoid), foreign key (far_id) references faretype (far_id) on delete restrict on update restrict) ENGINE=InnoDB DEFAULT CHARSET=utf8。/*==============================================================*//* Index: cus_account *//*==============================================================*/create index cus_account on customer( cus_account)。/*==============================================================*//* Table: flightpany *//*==============================================================*/create table flightpany( _autoid int auto_increment not null, _code varchar(20) not null, _name varchar(50) not null, _address varchar(50) not null, _register date not null, _information varchar(10000) not nu
點擊復制文檔內(nèi)容
公司管理相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1