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

正文內(nèi)容

基于web的招投標系統(tǒng)的設(shè)計與實現(xiàn)—免費(文件)

2024-12-30 02:23 上一頁面

下一頁面
 

【正文】 各表時間的關(guān)系。 表 51 系統(tǒng)數(shù)據(jù)表的簡要描述 表 52 用戶信息表 (Person) 字段名 數(shù)據(jù)類型 長度 允許為空 是否為主鍵 說明 PersonID bigint 8 否 是 唯一標識 FamilyName varchar 255 否 登錄名 GivenName varchar 255 否 真實名 EmailAddress varchar 255 否 郵箱地址 Password varchar 255 否 密碼 StreetAddress1 varchar 255 否 單位地址 StreetAddress2 varchar 255 是 地址 City varchar 255 是 城市 State varchar 255 是 狀態(tài) PostalCode varchar 10 是 郵政編碼 Country varchar 255 是 所屬國家 Active char 1 是 行為 LastLogin datetime 8 是 最后登錄時間 表 描述 Person 包含系統(tǒng)中所有注冊用戶的資料 Item 包含待售或以售項目的信息 Bid 包含每個 Item出價的信息 Sale 包含每項銷售的信息,包括被出價的項目和出價者 Id Seller 包含 Person出售的項目信息 表 53 Seller表 字段名 數(shù)據(jù)類型 長度 是否允許為 空 是否為主鍵 說明 ID bigint 8 是 唯一標識 PersonID bigint 8 用戶 ID ItemsListed int 4 所列項目 ItemsActive int 4 活躍項目 LastActivity datetime 8 最后一項活動 表 54 Item表 字段名 數(shù)據(jù)類型 長度 是否允許為空 是否為主鍵 說明 ItemID bigint 8 是 唯一標識 ItemName varchar 500 項目名稱 Description varchar 1000 是 項目描述 AskingPrice money 8 要求價格 NotifyPrice money 8 是 通報價格 SellerID bigint 8 賣方 ID ListingDate datetime 8 上部時間 ExpirationDate datetime 8 到期 ItemStatus varchar 10 狀態(tài) 表 55 Bid表 字段名 數(shù)據(jù)類型 長度 是否允許為空 是否為主鍵 說明 BidID bigint 8 是 唯一標識 ItemID bigint 8 項目 ID BidderID bigint 8 投標者 ID Timestamp datetime 8 時間戳 BidAmount money 8 投標金額 BidChange money 8 變更 表 56 sale表 字段名 數(shù)據(jù)類型 長度 是否允許為空 是否為主鍵 說明 SaleID bigint 8 是 唯一標識 ItemID bigint 8 項目 ID WinningBid money 8 中標 BuyerID bigint 8 買家 ID sellerApproval char 1 賣方審批 BuyerAcceptance char 1 買方驗收 Completiondate Datetime 8 竣工日期 創(chuàng)建表的腳本文件 數(shù)據(jù)表在創(chuàng)建完畢后,前面已經(jīng)介紹了所有表數(shù)據(jù)表的結(jié)構(gòu)、內(nèi)容及各表之間的關(guān)系,還要生成 SQL腳本文件。應(yīng)用程序與存儲過程通信,而存儲過程則與表通信。 表 57 存儲過程表 存 儲 過 程 描 述 sp_bid_isp 添加一條用戶的競價 sp_Get_Bid_Details 獲取某件項目所有競價的詳細信息 sp_item_dsp 刪除某件項目 sp_get_highest_bid 獲取某件項目的最高競價 sp_item_isp 添加一件項目 sp_item_sel 返回某用戶的項目 sp_item_usp 更新某件項目信息 sp_items_for_sale 返回所有可以競價的項目 sp_login 處理用戶登錄事件 sp_my_winning_bids 返回某用戶當前競標于領(lǐng)先地位的所有項目 sp_person_isp 添加一個用戶信 息 sp_person_sel 通過用戶名即郵件地址來查詢一個用戶 sp_person_sel_by_id 查詢某條競標信息的競標者信息 sp_person_usp 更新用戶信息 sp_sale_plete 完成某個項目的交易 sp_sale_isp 為某個項目增加一次成功的交易記錄 6 系統(tǒng)總體實現(xiàn) 本系統(tǒng)使用 Pagelet控件技術(shù)編寫了 件。其頁面顯示了一個表 , 該表對每個當前招競標的項目作了簡單的說明。database=bids。如果用戶不是會員,那么 用戶只要按照要求填寫相關(guān)的信息就可以成功的注冊為本系統(tǒng)會員。在首頁面單擊“注冊”鏈接進入該頁面,此頁面不僅可以讓用戶注冊添加個人用戶信息,同時它也是修改注冊信息的界面。 下面是 Person類設(shè)計方案方法的定義和描述。 obj = new ()。 = [].Value。 = 。 = false。 } else { Process = ADD。 string strStatus。 [].Value = 。 } } else { // 更新用戶信息 strStatus=(, , , , , , , , , )。 } else if( 1) { = Update Failed! + strStatus。 myPersonDetails = new ()。 [PersonID].Value = ()。從該頁面中,注冊用戶可以選擇某個特定的待招項目,單擊后到達 查看別人的競價或者自己為該項目出價。 //通過 Tools類中的 :public static bool IsLoggedIn()方法 ,并用該方法去判斷用戶是否已經(jīng)登錄。 } else { = Wele guest。 { objItemList = new ()。itemname= + (strName) + amp。 結(jié) 論 本文主要分析了實現(xiàn)招投標系統(tǒng)的主要方法,并對招投標的主要功能做了描述。 此本系統(tǒng)開發(fā)了一個網(wǎng)絡(luò)招標投標系統(tǒng),必要重要的內(nèi)容是 三個通用模塊即三個類文件,這三個類文集成了系統(tǒng)中數(shù)據(jù)庫應(yīng)用的方法,大部分的應(yīng)用程序都是通過掉用其中的方法完成操作的。例如:許多數(shù)字項字段沒有驗證;當編輯用戶信息時,必須強制輸入密碼,確保密碼匹配等等。 [3] 楊浩. [M].北京:清華大學(xué)出版社 , 2021。 [7] 李明剛 , 肖建. ASP. NET Web 站點高級編程范例 [M].北京:清華大學(xué)出版社, 2021。 感謝所有我身邊的同學(xué),朋友,與你們的相識是我人生最大的幸福之一,謝謝你們。 關(guān)于學(xué)位論文使用權(quán)和研究成果知識產(chǎn)權(quán)的說明: 本人完全了解成都信息工程學(xué)院有關(guān)保管使用學(xué)位論文的規(guī)定,其中包括: ( 1)學(xué)校有權(quán)保管并向有關(guān)部門遞交學(xué)位論文的原件與復(fù)印件。 ( 5)學(xué)校可以公布學(xué)位論文的全部或部 分內(nèi)容(保密學(xué)位論文在解密后遵守此規(guī)定)。s really a pleasure now and then to bee a mere nothing, especially when a man is as highly placed as I am. And then to think that we all, even with patent lacquer, are nothing more than insects of a moment on that anthill the earth, though we may be insects with stars and garters, places and offices! One feels quite a novice beside these venerable millionyearold boulders. On last New Year39。s eve, to the Brocken。 but a ccording to die French proverb。 for as iron sharpens iron, so by glory one courage sharpeh another. In cases of great enterprise, upon charge and adventure, a position of glorious natures doth put life into business。 omnium, quae cHxerat jeceratque, arte quadam ostentator: for that proceeds not of vanity, but of natural magnanimity, and discretion: and in som e persons is not only ely, but gracious. For excusations, cessions, modesty itself well governed, are but arts of ostentation. And amongst those arts there is none better, than that which Plinius Secundus speaketh of。 for he that you mend, is either superior to you, in that you mend, or inferior. If he be inferior, if he be to be mended, you much more。 and the slaves of their own vaunts. LastIndexNext And now having spoken of assaults, let us sum up all acts ofviolence under a single law, which shall be as follows:No one shallta ke or carry away any of his neighbour39。 and especially greatwhen in vi olation of public and holy rites, or of the partly monrites in which tribes and phratries share。 but he who did must have supposed one of threethingseither that they did not exist,which is the first possibility,or secondly, that, if they did, they took no care of man, orthirdly, that they were easily appeased and turned aside from theirpurpose, by sacrifices and prayers. Cleinias. What shall we say or do to these persons? Athenian Stranger. My good friend, let us first hear the jests whichI suspect that they in their superiority will utter against us. Cle. What jests? Ath. They will make some irreverent speech of th
點擊復(fù)制文檔內(nèi)容
研究報告相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1