




已阅读5页,还剩54页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1 山东理工大学设备采购管理信息系统 设计者 周无霜王彬洲李雪连 2 目录 数据库需求分析 数据库概念结构设计 数据库逻辑结构设计 数据库物理结构设计 3 一 数据库需求分析 本小组在山东理工大学资源供应管理科采用询问的调查方法 了解到完成正常的设备采购安排需要以下信息 返回目录 4 1 功能需求分析 根据调研需求分析我们得出的基本采购流程为 5 1 功能需求分析 根据调研需求分析我们得出的基本采购流程为 系统实现整个采购过程当中各个信息的录入存储 修改 删除和查询 具体包括 资源供应处信息 采购单信息 供货厂家信息 货物信息 合同信息 验货单信息 使用部门信息 物资领用验货信息 存储 修改 删除和查询 6 2 数据需求 资源供应处名称 电话 邮编 电子邮件 地址 采购单号 日期 货物编号 货物名称 货物单价 货物数量 发货单位 发货单位编号 使用部门 使用部门编号 成交方式 采购人 采购人编号 厂家名称 厂家编号 厂家电话 厂家邮编 厂家电子邮件 厂家地址 货物编号 货物名称 货物单价 货物数量 货物型号 货物规格 验货日期 付款日期 生产厂家 生产厂家编号 附件名称及数量 7 2 数据需求 购货单位 甲方 供货单位 乙方 购货单位 法定代表人 供货单位 法定代表人 鉴定日期 合同编号 单号 验货日期 资产名称 生产厂家 规格 型号 单价 数量 总价 出厂号 附件名称及数量 验收结论 备注 验收人 送货人 职工号 结账方式 部门名称 部门编号 部门管理员 联系电话 电子邮件 单位 验收时间 物资名称 供应商 型号 生产厂家 规格 经费来源 发票号 单价 数量 总价 出厂号 附件名称及数量 验收结论 备注 采购人 使用部门管理员 验收领用人 8 3 数据字典 9 3 数据字典 10 3 数据字典 11 3 数据字典 12 3 数据字典 13 3 数据字典 14 3 数据字典 15 3 数据字典 16 4 数据流程图 4 数据流程图 17 二 数据库概念结构设计 E R图 返回目录 18 二 数据库概念结构设计 局部视图 部门提出采购单 19 UserName UserPhone UserEmail UserAddress UserZipcode 三 数据库逻辑结构设计 CompName CompID CompPhone CompAddress CompZipcode Company User 返回目录 20 ListID LastDate GoodsQuantity GoodsName GoodsID UnitPrice CompName CompID TradeStyle DepartName Buyer EmployeeId 三 数据库逻辑结构设计 OrigianalID GoodsName UnitPrice Standards Type GoodsQuantity CompID ReDatePayDate Anatomy CompName TotalPrice Goods Shoppinglist 21 ACID DepartName Departmanager GoodsName Standards Type UnitPrice Anatomy Source BillID OfferDate Quantity TotalPrice OrigianlID ReConclusion Remarks Recipients 三 数据库逻辑结构设计 ConID UserName CompName UserManager CompManager ConDate ConRemarks Preserveway CompID Contract AC 22 DepartID DepartName Departmanager DepartPhone DepartEmail 三 数据库逻辑结构设计 ReID Redate GoodsName CompName Standards Type UnitPrice GoodsQuantity TotalPrice OrigianlID Anatomy ReConclusion Remarks Deliveryman Receipt Department 23 三 数据库逻辑结构设计 24 三 数据库逻辑结构设计 25 三 数据库逻辑结构设计 26 三 数据库逻辑结构设计 27 三 数据库逻辑结构设计 28 三 数据库逻辑结构设计 29 三 数据库逻辑结构设计 30 三 数据库逻辑结构设计 31 四 数据库物理结构设计 选取SQLServer2005作为DBMS 创建数据库Offer 及表User CreatedatabaseOfferOnprimary name Offer Filename d Offer mdf Logon name Offer log Filename d Offer log ldf CREATETABLE User UserName varchar 20 NOTNULL UserPhone varchar 13 NOTNULL UserEmail varchar 200 NOTNULL UserAddress varchar 200 NOTNULL UserZipcode varchar 6 NOTNULL ON PRIMARY CREATETABLE Company CompName varchar 50 NOTNULL CompID varchar IDENTITY 20 NOTNULL CompPhone varchar 13 NULL CompAddress varchar 200 NOTNULL CompEmail varchar 200 NULL CompZipcode varchar 6 NULL ON PRIMARY CREATETABLE Shoppinglist ListID varchar IDENTITY 20 NOTNULL ListDate datetime NOTNULL GoodsQuantity varchar 20 NOTNULL GoodsName varchar 200 NOTNULL GoodsID varchar 200 NOTNULL UnitPrice varchar 12 NOTNULL CompName varchar 200 NULL CompID varchar 20 NOTNULL TradeStyle varchar 12 NOTNULL DepartName varchar 50 NOTNULL Buyer varchar 12 NOTNULL EmployeeID varchar 9 NOTNULL ON PRIMARY 返回目录 32 四 数据库物理结构设计 CREATETEBLE Goods GoodsName varchar 50 NOTNULL OrigianalID varchar IDENTITY 20 NOTNULL UnitPrice varchar 12 NOTNULL Standards varchar 20 NOTNULL Type varchar 20 NOTNULL GoodsQuantity varchar 50 NOTNULL CompID varchar 20 NOTNULL ReDate datetime NOTNULL PayDate datetime NOTNULL Anatomy varchar 500 NULL CompName varchar 80 NOTNULL TotalPrice varchar 12 NOTNULL ON PRIMARY CREATETABLE AC ACID varchar IDENTITY 20 NOTNULL DepartName varchar 50 NOTNULL Departmanager varchar 12 NOTNULL GoodsName varchar 50 NOTNULL CompName varchar 80 NOTNULL Standards varchar 20 NOTNULL Type varchar 20 NOTNULL UnitPrice varchar 12 NOTNULL Anatomy varchar 80 NULL Source varchar 50 NULL BillID varchar 20 NOTNULL OfferDate datetime NOTNULL Quantity varchar 10 NOTNULL TotalPrice varchar 10 NOTNULL OrinianlID varchar 20 NOTNULL ReConculsion varchar 80 NOTNULL ACRemarks varchar 500 NULL Recipients varchar 12 NOTNULL ON PRIMARY 33 四 数据库物理结构设计 CREATETABLE Contract UserName varchar 20 NOTNULL CompName varchar 50 NOTNULL UserManager varchar 12 NOTNULL CompManager varchar 12 NOTNULL ConDate datetime NOTNULL ConID varchar IDENTITY 20 NOTNULL ConRemarks varchar 500 NULL Preserveway varchar 20 NOTNULL CompID varchar 20 NOTNULL ON PRIMARY CREATETABLE Department DepartName varchar 50 NOTNULL DepartID varchar IDENTITY 20 NOTNULL Departmanager varchar 12 NOTNULL DepartPhone varchar 11 NULL DepartEmail varchar 20 NULL ON PRIMARY CREATETABLE Receipt ReID varchar IDENTITY 20 NOTNULL Redate datetime NOTNULL GoodsName varchar 50 NOTNULL CompName varchar 80 NOTNULL Standards varchar 20 NOTNULL Type varchar 20 NOTNULL UnitPrice varchar 12 NOTNULL GoodsQuantity varchar 50 NOTNULL TotalPrice varchar 12 NOTNULL OrigianlID varchar 20 NOTNULL Anatomy varchar 500 NOTNULL ReConclusion varchar 80 NOTNULL ReRemarks varchar 500 NULL Reperson varchar 12 NOTNULL Deliveryman varchar 12 NOTNULL ON PRIMARY 34 HotTip HowdoIincorporatemylogotoaslidethatwillapplytoalltheotherslides Onthe View menu pointto Master andthenclick SlideMaster or NotesMaster Changeimagestotheoneyoulike thenitwillapplytoalltheotherslides Imageinformationinproduct Image Notetocustomers ThisimagehasbeenlicensedtobeusedwithinthisPowerPointtemplateonly Youmaynotextracttheimageforanyotheruse 35 Clicktoedittitlestyle ContentsThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc YourTextHere YourTextHere YourTextHere YourTextHere Descriptionofthecontents ClicktoaddText ClicktoaddText ClicktoaddText ClicktoaddText ClicktoaddText 36 Clicktoedittitlestyle 4 Descriptionofthebusiness 5 Descriptionofthebusiness 1 Descriptionofthebusiness 2 Descriptionofthebusiness 3 Descriptionofthebusiness ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 37 Clicktoedittitlestyle ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 38 Clicktoedittitlestyle 2 DescribecontentsforaChartDescriptionofthecompany ssubcontentsDescriptionofthecompany ssubcontents 1 DescribecontentsforaChartDescriptionofthecompany ssubcontentsDescriptionofthecompany ssubcontents Title Title Title Title ChartTitleinhere textinhere textinhere textinhere textinhere 39 Clicktoedittitlestyle Contents01 Contents02 Contents03 Contents04 Contents05 Contents06 0 20 40 60 80 100 18 5 17 5 8 7 23 6 63 6 84 3 ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 40 Clicktoedittitlestyle Textinhere Textinhere Textinhere ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 41 Clicktoedittitlestyle ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc Titleinhere 2 Descriptionofthecompany ssubcontents Describeavisionofcompanyorstrategiccontents 1 Descriptionofthecompany ssubcontents ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 42 Clicktoedittitlestyle ClicktoaddText ClicktoaddText ClicktoaddText ContentsThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 43 Clicktoedittitlestyle Level1 Level2 Level3 Level4 Level5 Descriptionofthecontents Descriptionofthecontents Descriptionofthecontents Descriptionofthecontents Descriptionofthecontents 44 Clicktoedittitlestyle ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc AGroup CGroup BGroup ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 45 Clicktoedittitlestyle Describeavisionofcompanyorstrategiccontents Describeavisionofcompanyorstrategiccontents Describeavisionofcompanyorstrategiccontents Describeavisionofcompanyorstrategiccontents Descriptionoftheproducts 46 Clicktoedittitlestyle Textinhere Textinhere Textinhere Textinhere Textinhere Descriptionofthecontents ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 47 Clicktoedittitlestyle 50 24 10 16 ProductsDescriptionofthecompany sproducts ServiceDescriptionofthecompany sservice TechnologyDescriptionofthecompany stechnology MarketDescriptionofthecompany smarket 50 24 16 10 48 Clicktoedittitlestyle 2006 Text Text Text 2007 2008 Textinhere Textinhere Textinhere Textinhere Textinhere Textinhere ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 49 Clicktoedittitlestyle ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc Yourtextinhere Yourtextinhere Yourtextinhere AddyourtextinhereYourtextinhereYourtextinhereYourtextinhere AddyourtextinhereYourtextinhereYourtextinhereYourtextinhere AddyourtextinhereYourtextinhereYourtextinhereYourtextinhere 50 Clicktoedittitlestyle Textinhere ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc Textinhere ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc Textinhere ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc Textinhere Textinhere Textinhere 51 Clicktoedittitlestyle Textinhere Titleinhere Textinhere Textinhere 2005 2006 2007 2008 DescriptionofthecontentsDescriptionofthecontents DescriptionofthecontentsDescriptionofthecontents DescriptionofthecontentsDescriptionofthecontents DescriptionofthecontentsDescriptionofthecontents ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 52 Clicktoedittitlestyle Textinhere Textinhere Textinhere ThemeGalleryisaDesignDigitalContent ContentsmalldevelopedbyGuildDesignInc 53 Clicktoedittitlestyle Addyourtextinhere Addyourtextinhere Addyourtextinhere Addyourtextinhere Addyourtextinhere 54 Clicktoedittitlestyle 10 60 30 YourtextinhereYourtextinhereYourtextinhereYourtextinhere Textinhere YourtextinhereYourtextinhere Textinhere YourtextinhereYourtextinhereYourtextinhereYourtextinhere Textinhere ClicktoaddText Theme
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年人教版八年级英语上册Unit4 Section B(含答案解析)
- 小班田径课题题目及答案
- 消极社会现象题目及答案
- 2025网约车司机劳动合同书模板范本
- 现代生产管理题目及答案
- 2025年注册消防工程师资格证考试题库
- 2025年投资连结保险合同产生的资产知识点
- 2025合同管理台账模板
- 2025金融服务中介机构银行贷款业务合同
- 2025年有色金属分选机合作协议书
- 2025年中级消防设施操作员证考试600题(附答案)
- 车间安全教育培训记录表
- 【课件】开启科学探索之旅(课件)-2025-2026学年人教版物理八年级上册
- 监察工作规范管理办法
- DBJ08-232-98 道路交通管理设施施工及验收规程
- 2024年SHEIN全球化布局与招商政策报告
- 2024-2025银行信贷员培训计划
- 保密培训课件 银行
- 2.2 养成亲社会行为 课件+内嵌视频 统编版八年级道德与法治上册
- 意大利足协协议书
- 以物抵债方案(3篇)
评论
0/150
提交评论