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

正文內(nèi)容

軟件工程飯店點餐-在線瀏覽

2025-01-17 08:40本頁面
  

【正文】 循以下原則 操作簡單,易學(xué),易掌握;界面美觀,操作舒適;快速反應(yīng),響應(yīng)合理;語言規(guī)范,語義一致。 信息最小量原則。 用戶界面應(yīng)能對用戶的決定做出及時的響應(yīng),提高對話、移動的思考的效率,最大可能的減少擊鍵次數(shù),縮短鼠標(biāo)移動距離,避免使用戶產(chǎn)生無所適從的感覺。 操作可逆。 界面設(shè)計過程(略) 數(shù)據(jù)庫設(shè)計 數(shù)據(jù)流程圖 DFD(Data Flow Diagram)是描述系統(tǒng)數(shù)據(jù)流程的工具,它將數(shù)據(jù)獨立抽象出來,通用圖形方式描述信息的來龍去脈和實際流程。 DD 是在新的信息系統(tǒng)數(shù)據(jù)流程圖的基礎(chǔ)上,進一步定義和描述數(shù)據(jù)處理過程、外交實體及數(shù)據(jù)存儲(數(shù)據(jù)庫)的詳細邏輯內(nèi)容工具。建立了一個數(shù)據(jù) 庫 TSC,包括了六 個表: 服務(wù)員 顧客 房間空置情況 查詢賬單 前臺 服務(wù)員 交款 交款 結(jié)賬 賬單 房間號 廚房 分配廚師信息 已點菜名單 做菜 廚師 存入數(shù)據(jù)庫 做完 9 服務(wù)員信息表( Waiter) 、 菜單信息表( Menu) 、 廚師信息表( Cook) 、 房間信息表( Room) 、餐桌信息表( Dinner table) 、 帳號信息表( Account) 。所以代碼的設(shè)計就顯得非常重要。以 下只列舉部分關(guān)鍵代碼 create database TSC use TSC go create table menu ( CH CHAR(10) NOT NULL, CM CHAR(10) NOT NULL, ZL CHAR(10) NOT NULL, DJ FLOAT NOT NULL, ZC FLOAT NOT NULL, CL FLOAT(5) NOT NULL, PRIMARY KEY(CH))。 create table ordertable ( XH varchar(50) NOT NULL, CZH CHAR(10) NOT NULL, CM CHAR(10) NOT NULL, DJ FLOAT NOT NULL, ZC FLOAT NOT NULL, XJ FLOAT NOT NULL, JZ CHAR(5) not null, PRIMARY KEY(XH))。 create table waiter ( FWYH CHAR(8) NOT NULL, FNAME CHAR(10) NOT NULL, XB CHAR(5) NOT NULL, GZSJ CHAR(15) NOT NULL, PRIMARY KEY(FWYH))。 14 應(yīng)用程序設(shè)計(前臺) // 餐飲管理 : header file // if !defined(AFX_DLG_H__03EB0AFA_3099_46BF_893F_6B4A49E04458__INCLUDED_) define AFX_DLG_H__03EB0AFA_3099_46BF_893F_6B4A49E04458__INCLUDED_ if _MSC_VER 1000 pragma once endif // _MSC_VER 1000 ///////////////////////////////////////////////////////////////////////////// // CMyDlg dialog class CMyDlg : public CDialog { // Construction public: CString str。 CImageList m_Imagelist。 CToolBar m_Toolbar。 _RecordsetPtr m_pRs。 // standard constructor // Dialog Data //{{AFX_DATA(CMyDlg) enum { IDD = IDD_MY_DIALOG }。 // DDX/DDV support //}}AFX_VIRTUAL 15 // Implementation protected: HICON m_hIcon。 afx_msg void OnSysCommand(UINT nID, LPARAM lParam)。 afx_msg HCURSOR OnQueryDragIcon()。 afx_msg void OnMENUkaitai()。 afx_msg void OnBUTTONkaitai()。 afx_msg void OnMENUjiesuan()。 afx_msg void OnMENUyuangong()。 afx_msg void OnMENUabout()。 afx_msg void OnMENUjinhuo()。 afx_msg void OnMENUrishourucx()。 afx_msg void OnMENUquanxian()。 afx_msg void OnMENUsqlcopy()。 afx_msg void OnMENUaddcai()。 afx_msg BOOL OnToolTipNotify(UINT id, NMHDR* pNMHDR, LRESULT* pResult)。 //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. endif // !defined(AFX_DLG_H__03EB0AFA_3099_46BF_893F_6B4A49E04458__INCLUDED_) // 餐飲管理 .h : main header file for the 餐飲管理 application 16 // if !defined(AFX__H__446DF14A_A8C0_4C72_AE09_16339B51D420__INCLUDED_) define AFX__H__446DF14A_A8C0_4C72_AE09_16339B51D420__INCLUDED_ if _MSC_VER 1000 pragma once endif // _MSC_VER 1000 ifndef __AFXWIN_H__ error include 39。 before including this file for PCH endif include // main symbols ///////////////////////////////////////////////////////////////////////////// // CMyApp: // See 餐飲管理 .cpp for the implementation of this class // class CMyApp : public CWinApp { public: CString pwd。 _ConnectionPtr m_pCon。 // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CMyApp) public: virtual BOOL InitInstance()。 17 ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. endif // !defined(AFX__H__446DF14A_A8C0_4C72_AE09_16339B51D420__INCLUDED_) // 餐飲管理 .cpp : Defines the class behaviors for the application. // include include 餐飲管理 .h include 餐飲管理 ifdef _DEBUG define new DEBUG_NEW undef THIS_FILE static char THIS_FILE[] = __FILE__。 ///////////////////////////////////////////////////////////////////////////// // CMyApp initialization BOOL CMyApp::InitInstance() { AfxEnableControlContainer()。 HRESULT hr。 if(SUCCEEDED(hr)) { m_pConConnectionTimeout=3。Data Source=,adModeUnknown)。 (連接數(shù)據(jù)庫錯誤信息 :%s,())。 return false。 // Call this when using MFC in a shared DLL else Enable3dControlsStatic()。 m_pMainWnd = amp。 19 int nResponse = ()。s message pump. return FALSE。 endif ///////////////////////////////////////////////////////////////////////////// // CAboutDlg dialog used for App About extern CMyApp theApp。 // Dialog Data //{{AFX_DATA(CAboutDlg) enum { IDD = IDD_ABOUTBOX }。 // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: //{{AFX_MSG(CAboutDlg) //}}AFX_MSG DECLARE_MESSAGE_MAP() }。 //{{AFX_DATA_MAP(CAboutDlg) //}}AFX_DATA_MAP } 21 BEGIN_MESSAGE_MAP(CAboutDlg, CDialog) //{{AFX_MSG_MAP(CAboutDlg) // No message handlers //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CMyDlg dialog CMyDlg::CMyDlg(CWnd* pParent /*=NULL*/) : CDialog(CMyDlg::IDD, pParent) { //{{AFX_DATA_INIT(CMyDlg) // NOTE: the ClassWizard will add member initialization here //}}AFX_DATA_INIT // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 m_hIcon = AfxGetApp()LoadIcon(IDR_MAINFRAME)。 //{{AFX_DATA_MAP(CMyDlg) //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CMyDlg, CDialog) //{{AFX_MSG_MAP(CMyDlg) ON_WM_SYSCOMMAND() ON_WM_PAINT() ON_WM_QUERYDRAGICON() ON_COMMAND(ID_MENU_login, OnMENUlogin) ON_COMMAND(ID_MENU_kaitai, OnMENUkaitai) ON_COMMAND(ID_MENU_jiezhang, OnMENUjiezhang) ON_COMMAND(IDB_kaitai, OnBUTTONkaitai) ON_COMMAND(IDB_pay, OnBUTTONjiezhang) ON_COMMAND(ID_MENU_jiesuan, OnMENUjiesuan) ON_COMMAND(IDB_rishouru, OnBUTTONris
點擊復(fù)制文檔內(nèi)容
環(huán)評公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1