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

正文內(nèi)容

航空機(jī)票預(yù)訂系統(tǒng)的開(kāi)發(fā)與應(yīng)用設(shè)計(jì)方案-資料下載頁(yè)

2025-05-06 01:25本頁(yè)面
  

【正文】 插入記錄 publicboolean add(Faretype fare)。 //更新記錄 publicboolean update(String hql)。 //刪除記錄 publicboolean del(String hql)。}、IBookinformationDAO接口package DAO。//編輯者:DDDimport 。import 。publicinterface IBookinformationDAO { // 查詢(xún)所有訂票信息 public List QueryAll(int start, int limit)。 // 獲取記錄總數(shù) publicint QueryCount()。 //插入記錄 publicboolean add(Bookinformation flightpany)。 //更新記錄 publicboolean update(String hql)。 //刪除記錄 publicboolean delete(String hql)。 //獲得航空公司名稱(chēng) public List search_Name(String hql)。 //獲得訂票客戶(hù)的身份證號(hào)碼 public List search_cusId(String hql)。 //獲得特定身份證號(hào)碼客戶(hù)信息 public List search_cusId_information(String hql)。 //個(gè)人信息修改 publicboolean individual_update(String hql)。 //密碼修改 publicboolean password_update(String hql)。}、IFlightinformationDAO接口/*==============*//* 編輯者:EEE *//*============*/package DAO。import 。import 。public interface IFlightinformationDAO { // 查詢(xún)所有航班公司信息 public List QueryAll(int start, int limit)。 //查詢(xún)相應(yīng)的航班信息 public List QueryInf(String sql)。 // 獲取記錄總數(shù) public int QueryCount()。 //獲取相應(yīng)艙位的人數(shù) public int GetNumber(String sql)。 //獲取相應(yīng)的記錄總數(shù)(分頁(yè)) 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()。 //取得飛機(jī)機(jī)型 public List GetairType()。}、IAirtypeDAO接口package DAO。//編輯者:FFFimport 。import 。//飛機(jī)機(jī)型信息接口publicinterface IAirtypeDAO { public List QueryAll(int start, int limit)。// 查詢(xún)所有飛機(jī)機(jī)型信息 public List QueryInf(String sql)。//查詢(xún)相應(yīng)的飛機(jī)機(jī)型信息 publicint QueryCount()。// 獲取記錄總數(shù) publicint QueryCounts(String sql)。//獲取相應(yīng)的記錄總數(shù)(分頁(yè)) publicboolean add(Airtype airtype)。//插入記錄 publicboolean update(String hql)。//更新記錄 publicboolean delete(String hql)。//刪除記錄}六、數(shù)據(jù)庫(kù)設(shè)計(jì)說(shuō)明書(shū)數(shù)據(jù)庫(kù)結(jié)構(gòu)設(shè)計(jì)(參照 概要設(shè)計(jì)說(shuō)明書(shū)的數(shù)據(jù)庫(kù)結(jié)構(gòu)設(shè)計(jì))數(shù)據(jù)庫(kù)的安全保密性設(shè)計(jì)Airline Reservation System有3種不同的使用者,包括高級(jí)管理人員、管理人員、注冊(cè)人員3種。對(duì)于3種使用者通過(guò)不同用戶(hù)名登入,系統(tǒng)通過(guò)對(duì)用戶(hù)名的識(shí)別來(lái)區(qū)分不同的訪問(wèn)者,系統(tǒng)針對(duì)不同的訪問(wèn)者賦予不同的權(quán)限。高級(jí)管理人員負(fù)責(zé)日常的用戶(hù)管理工作,管理所有管理人員用戶(hù)、注冊(cè)人員用戶(hù),可能對(duì)用戶(hù)進(jìn)行停用。管理人員負(fù)責(zé)航空訂票、退票等日常業(yè)務(wù)。注冊(cè)人員可能通過(guò)相關(guān)網(wǎng)站進(jìn)行網(wǎng)上預(yù)訂票。數(shù)據(jù)庫(kù)優(yōu)化數(shù)據(jù)庫(kù)中建立了相關(guān)索引,進(jìn)行時(shí)間、帳戶(hù)、航班訂票信息等多方面的快速搜索,大大提高了系統(tǒng)在數(shù)據(jù)交互的速度。系統(tǒng)不局限于mysql數(shù)據(jù)庫(kù)(此處采用mysql數(shù)據(jù)庫(kù)),系統(tǒng)通過(guò)Hibernate可以支持多數(shù)據(jù)庫(kù),同時(shí)可以在多平臺(tái)上運(yùn)行,如windows、linux、unix等。數(shù)據(jù)庫(kù)源代碼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
點(diǎn)擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1