收藏 分销(赏)

物业管理系统数据库设计.doc

上传人:二*** 文档编号:4499086 上传时间:2024-09-25 格式:DOC 页数:11 大小:107KB
下载 相关 举报
物业管理系统数据库设计.doc_第1页
第1页 / 共11页
亲,该文档总共11页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、(word完整版)物业管理系统数据库设计数据库设计一、 表设计概述数据库将针对物业管理系统,配合SQL server2005数据库系统中提供的数据管理功能,实现楼栋管理,房间管理,业主管理,收费管理,物资设备管理,用户管理等功能。二、表设计(1)业主表 tb_ower:用于记录业主信息字段类型可否为空备注owerIdint否业主编号(P)owerNamevarchar(50)否业主姓名owerLoginnamevarchar(50)否业主登录名owerPasswordvarchar(50)否业主登录密码owerSexvarchar(50)否业主的性别owerAgeint否业主的年龄houseI

2、dint否业主所属楼栋(F表示tb_house(houseId)的外键)roomIdint否业主房间号(F表示tb_room(roomId)的外键)owerIDcardvarchar(50)否业主身份证号owerTelvarchar(50)否业主联系电话owerHomeplacevarchar(50)否业主籍贯owerWorkplacevarchar(50)否业主工作地roleIdint否角色ID(F表示tb_role(roleId)的外键)(2)业主成员表 tb_ower_family:用于记录业主成员信息字段类型可否为空备注ofIdint否业主成员编号(p)ofNamevarchar(50

3、)否成员姓名ofSexvarchar(50)否成员性别ofHomeplacevarchar(50)否成员籍贯ofTelvarchar(50)否成员电话ofWorkplacevarchar(50)否成员工作地owerIdint否业主ID(F表示tb_ower(owerId)的外键,业主只能增删自己ID对应的业主成员)(3)楼栋信息表tb_house:用于记录楼栋信息字段类型是否为空备注houseIdint否楼栋编号ID(P)houseNamevarchar(50)否楼栋名buildStarttimedatetime否开工时间buildEndtimedatetime否竣工时间houseBugvar

4、char(500)否漏洞信息houseAreafloat否建筑面积(4)房间信息表tb_room:用于记录房间信息字段类型是否为空备注roomIdint否房间编号ID(P)roomNamevarchar(50)否房间名houseIdint否所属楼栋ID(F表示tb_house(houseId)的外键)owerIdint否业主ID(F表示tb_ower(owerId)的外键)enterTimedatetime否入住时间roomTypevarchar(50)否房型roomAreafloat否建筑面积roomPurposevarchar(50)否房间用途(管理员不能添加房间用途,默认为居住管理员不能

5、修改房间用途,只能由业主自己修改用途)(5)收费项目表tb_charge:用于显示收费标准字段类型是否为空备注chargeIdint否收费项目ID(P)chargeNamevarchar(50)否收费项目名chargeStandardfloat否收费标准(6)业主缴费表tb_pay:用于管理业主缴费信息字段类型是否为空备注payIdint否缴费编号IDchargeNamevarchar(50)否收费项目名chargeStandardfloat否应收金额payRealfloat否实收金额payBalancefloat否欠费金额chargeTimedatetime否收费时间owerNamevarc

6、har(50)否业主名payStateint否缴费状态(1已缴费,0未缴费)payMonthvarchar(50)否缴费月份(7)物资设备管理表tb_matter:用于物资设备管理字段类型是否为空备注matterIdint否物质ID(P)matterNameVarchar(50)否物资名称matterNumint否物质数量matterPricefloat否物质价格matterSortVarchar(50)否物资类别名称(F表示tb_matter_sort(matterSort)的外键)inStoretimedatetime否入库时间outStoretimedatetime否出库时间matter

7、Statevarchar(50)否物资状态(8)物资设备类别管理表tb_matter_sort:显示物资设备类别字段类型是否为空备注matterSortIdint否物质类别IDmatterSortvarchar(50)否物资类别名称(P)(9)用户角色表tb_role:用于分配各用户的角色字段类型是否为空备注roleIdint否角色ID(P)roleNamevarchar(50)否角色名三、数据库安全性设计1)概述基于项目特点,项目的安全控制主要由程序代码控制。SQL Server 端没有特殊地设定安全设置和检查。项目的用户身份验证、用户授权管理都由应用程序代码实现。2)数据库验证方式应用程序

8、端连接数据库时使用的数据库验证方式为SQL Server验证。 四、数据库备份恢复策略1)数据库的大小和数据修改的频率决定了采用何种数据库备份恢复策略。如果数据库较小或修改的频度非常低,则可以只实施完全数据库备份,不过此时要定期清理数据库的事务日志,防止数据库的事务日志被填满。其他情况则需要使用差异备份.由于本案例教学涉及的数据库规模较小,建议每周做一次完全备份,中间间隔两天做一次差异备份。2)数据库运行日常维护SQL Server 的一个优势就是对日常维护的要求比较低,但为了追求更高的可用性和安全性,建议每周做备份,同时注意将备份放在不同的备份媒体中,如多个硬盘。五、建表语句业主表 tb_o

9、wercreate table tb_ower(owerId int identity primary key,owerName varchar(50) ,owerLoginname varchar(50) ,owerPassword varchar(50) ,owerSex varchar(50) ,owerAge int ,houseId int ,roomId int ,owerIDcardvarchar(50) ,owerTel varchar(50) ,owerHomeplace varchar(50) ,owerWorkplace varchar(50) ,roleId int )

10、业主成员表 tb_ower_familycreate table tb_ower_family(ofId int identity primary key,ofName varchar(50) ,ofSex varchar(50) ,ofHouseplace varchar(50) ,ofTel varchar(50) ,ofWorkplace varchar(50) ,owerId int )楼栋信息表tb_housecreate table tb_house(houseId int identity primary key,houseName varchar(50) ,bulidStart

11、time datetime ,bulidEndtime datetime ,houseBug varchar(50) ,houseArea float ,)房间信息表tb_roomcreate table tb_room(roomId int identity primary key,roomName varchar(50) ,houseId int ,owerId int ,enterTime datetime ,roomType varchar(50) ,roomArea float ,roomPurpose varchar(50) )收费项目表tb_chargecreate table

12、tb_charge(chargeId int identity primary key,chargeName varchar(50) ,chargeStandard float )业主缴费表tb_paycreate table tb_pay(payId int identity primary key,chargeName varchar(50) ,chargeStandard float ,payReal float ,payBalance float ,chargeTime dateTime ,owerName varchar(50) ,payState int ,payMonth var

13、char(50) )物资设备管理表tb_mattercreate table tb_matter(matterId int identity primary key,matterName varchar(50) ,matterNum int ,matterPrice float ,matterSort varchar(50) ,inStoretime datetime ,outStoretime datetime ,matterstate varchar(50) )物资设备类别管理表tb_matter_sortcreate table tb_matter_sort(matterSortId i

14、nt identity,matterSort varchar(50) primary key)用户角色表tb_role create table tb_role (roleId int identity primary key,roleName varchar(50) )表关联:(1)外键名为fk_houseId:tb_ower中的外键houseId对应tb_house中的主键houseIdalter table tb_ower add constraint fk_houseId foreign key (houseId) references tb_house(houseId)(2)外键名为

15、fk_roomId:tb_ower中的外键roomId对应tb_room中的主键roomIdalter table tb_ower add constraint fk_roomId foreign key (roomId) references tb_room(roomId)(3)外键名为fk_roleId:tb_ower中的外键roleId对应tb_role中的主键roleIdalter table tb_ower add constraint fk_roleId foreign key (roleId) references tb_role(roleId)(4)外键名为fk_owerId:

16、tb_ower_family中的外键owerId对应tb_ower中的主键owerIdalter table tb_ower_family add constraint fk_owerId foreign key (owerId) references tb_ower(owerId)(5)外键名为fk_room_houseId:tb_room中的外键houseId对应tb_house中的主键houseIdalter table tb_room add constraint fk_room_houseId foreign key (houseId) references tb_house(hou

17、seId) (6)外键名为fk_matter:tb_matter中的外键matterSort对应tb_matter_sort中的主键matterSortalter table tb_matter add constraint fk_matter foreign key (matterSort) references tb_matter_sort(matterSort)在本省行政区域内从事草原保护、管理、建设和利用以及承包经营等活动,适用本条例。本条例所称草原,是指具有草原生态功能或者适用于畜牧业生产的天然草原和人工草地。天然草原包括草地、草山和草坡,人工草地包括改良草地和退耕还草地。appea

18、rance of the weld appearance quality technical requirements of the project must not have a molten metal stream does not melt the base metal to weld, weld seam and heat-affected zone surface must not have cracks, pores, defects such as crater and ash, surface smoothing, weld and base metal should be

19、evenly smooth transition. Width 2-3 mm from the edge of weld Groove. Surface reinforcement should be less than or equal to 1 + 0.2 times the slope edge width, and should not be greater than 4 mm. Depth of undercut should be less than or equal to 0.5 mm, total length of the welds on both sides underc

20、ut not exceed 10% of the weld length, and long continuous should not be greater than 100 mm. Wrong side should be less than or at 0.2T, and should not be greater than 2 mm (wall thickness mm t) incomplete or not allow 7.5 7.5.1 installation quality process standards of the electrical enclosure Cabin

21、et surface is clean, neat, no significant phenomenon of convex, close to nature, close the door. 7.5.2 Cabinet Cabinet face paints no paint, returned to rusted, consistent color. 7.5.3 uniform indirect gap from top to bottom, slot width 1.5mm 7.5.4 adjacent Cabinet surface roughness is 0. 7.5.5 the

22、cabinets firmly fixed, crafts beautiful. 7.5.6 Cabinet surface gauge, switch cabinet mark clear, neat, firm paste. 7.5.7 Terminal row of neat, is reliable, the appearance is clean and not damaged. 7.5.8 cables neat and clean, solid binding, binding process in appearance. 7.5.9 the first cable produc

23、tion firm, crafts beautiful, clear signage does not fade. 7.5.10 fireproof plugging tight, no cracks and pores. 7.6 7.6.1 of the standard electrical wiring quality technology cable a, the multi-core wire bunch arrangement should be parallel to each other, horizontal wire harness or wire should be perpendicular to the longitudinal multi-core wire bunch. The distance between the wire harness and wire harness symmetry, and as close as possible. B-core wiring harness into round, multi-core wire bunch used g wire binding, fastening

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 通信科技 > 数据库/数据算法

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2025 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服