实例介绍
系统采用人机交互的方式,界面美观友好,信息查询灵活、方便,数据存储安全可靠; 灵活地批量录入数据,使信息传递更快捷; 实现垃圾信息清理; 实现后台监控功能; 实现各种查询,如定位查询、模糊查询等; 实现图形化显示房源信息; 对用户输入的数据,进行严格的数据检验,尽可能避免人为错误; 系统应最大限度地实现易维护性和易操作性;
【实例截图】
【核心代码】
737cb24f-798f-418d-86e5-8634ac390981
└── 房屋中介管理系统
├── Database
│ ├── db_showHouse_Data.MDF
│ ├── db_showHouse_Log.LDF
│ ├── 数据库脚本.sql
│ └── 杀死进程的存储过程.sql
├── HouseAgency
│ ├── houseAgency
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── houseAgency.vshost.exe
│ │ │ └── houseAgency.vshost.exe.manifest
│ │ ├── BusinessM
│ │ │ ├── frmBargin.cs
│ │ │ ├── frmBargin.designer.cs
│ │ │ └── frmBargin.resx
│ │ ├── frmMain.cs
│ │ ├── frmMain.designer.cs
│ │ ├── frmMain.resx
│ │ ├── frmUserLogin.cs
│ │ ├── frmUserLogin.designer.cs
│ │ ├── frmUserLogin.resx
│ │ ├── houseAgency.csproj
│ │ ├── Image
│ │ │ ├── 3.jpg
│ │ │ ├── dl.jpg
│ │ │ ├── 修改.bmp
│ │ │ ├── 出租人员信息.png
│ │ │ ├── 删除.bmp
│ │ │ ├── 增加.bmp
│ │ │ ├── 成交量.png
│ │ │ ├── 房源查询.png
│ │ │ ├── 操作.bmp
│ │ │ ├── 收费记录.png
│ │ │ ├── 查询.bmp
│ │ │ └── 求租人信息.png
│ │ ├── mothedCls
│ │ │ ├── claFavorMethod.cs
│ │ │ ├── ClsCon.cs
│ │ │ ├── clsEmpleey.cs
│ │ │ ├── clsEmpleeyMethed.cs
│ │ │ ├── clsFavor.cs
│ │ │ ├── clsFitment.cs
│ │ │ ├── clsFitmentMethod.cs
│ │ │ ├── clsFloor.cs
│ │ │ ├── clsFloorMethod.cs
│ │ │ ├── clsgov.cs
│ │ │ ├── clsgovMethod.cs
│ │ │ ├── ClsHouse.cs
│ │ │ ├── ClsHouseMethed.cs
│ │ │ ├── clsIntend.cs
│ │ │ ├── clsIntendMethed.cs
│ │ │ ├── clsLogin.cs
│ │ │ ├── clsLoginMethed.cs
│ │ │ ├── clsMethed.cs
│ │ │ ├── clsMethedMethod.cs
│ │ │ ├── clsMoneyAndInfo.cs
│ │ │ ├── clsMoneyAndInfoMethod.cs
│ │ │ ├── clsSeat.cs
│ │ │ ├── clsSeatMethod.cs
│ │ │ ├── clsStudyDegree.cs
│ │ │ ├── clsStudyDegreeMethod.cs
│ │ │ ├── clstype.cs
│ │ │ ├── clstypeMethod.cs
│ │ │ ├── clsUser.cs
│ │ │ └── clsUserMethod.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── houseAgency.csproj.FileListAbsolute.txt
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── OutTenants
│ │ │ ├── frmFavor.cs
│ │ │ ├── frmFavor.designer.cs
│ │ │ ├── frmFavor.resx
│ │ │ ├── frmFitment.cs
│ │ │ ├── frmFitment.designer.cs
│ │ │ ├── frmFitment.resx
│ │ │ ├── frmFloor.cs
│ │ │ ├── frmFloor.designer.cs
│ │ │ ├── frmFloor.resx
│ │ │ ├── frmMothed.cs
│ │ │ ├── frmMothed.designer.cs
│ │ │ ├── frmMothed.resx
│ │ │ ├── frmSeat.cs
│ │ │ ├── frmSeat.designer.cs
│ │ │ ├── frmSeat.resx
│ │ │ ├── frmType.cs
│ │ │ ├── frmType.designer.cs
│ │ │ └── frmType.resx
│ │ ├── PayingM
│ │ │ ├── frmBackMoney.cs
│ │ │ ├── frmBackMoney.designer.cs
│ │ │ ├── frmBackMoney.resx
│ │ │ ├── frmMoney.cs
│ │ │ ├── frmMoney.designer.cs
│ │ │ └── frmMoney.resx
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── SeekTenantsM
│ │ │ ├── frmHouse.cs
│ │ │ ├── frmHouse.designer.cs
│ │ │ ├── frmHouse.resx
│ │ │ ├── frmIntend.cs
│ │ │ ├── frmIntend.designer.cs
│ │ │ ├── frmIntendInfo.cs
│ │ │ ├── frmIntendInfo.designer.cs
│ │ │ ├── frmIntendInfo.resx
│ │ │ ├── frmIntend.resx
│ │ │ ├── frmOk.cs
│ │ │ ├── frmOk.designer.cs
│ │ │ ├── frmOk.resx
│ │ │ ├── frmSelect.cs
│ │ │ ├── frmSelect.designer.cs
│ │ │ ├── frmSelect.resx
│ │ │ ├── frmStateHouse.cs
│ │ │ ├── frmStateHouse.designer.cs
│ │ │ └── frmStateHouse.resx
│ │ ├── StaffInfor
│ │ │ ├── frmEmpleeyAll.cs
│ │ │ ├── frmEmpleeyAll.designer.cs
│ │ │ ├── frmEmpleeyAll.resx
│ │ │ ├── frmEmploeey.cs
│ │ │ ├── frmEmploeey.designer.cs
│ │ │ ├── frmEmploeey.resx
│ │ │ ├── frmGov.cs
│ │ │ ├── frmGov.designer.cs
│ │ │ ├── frmGov.resx
│ │ │ ├── frmStudyDegree.cs
│ │ │ ├── frmStudyDegree.designer.cs
│ │ │ └── frmStudyDegree.resx
│ │ ├── SystemM
│ │ │ ├── frmChangYouSelfPwd.cs
│ │ │ ├── frmChangYouSelfPwd.designer.cs
│ │ │ ├── frmChangYouSelfPwd.resx
│ │ │ ├── frmRestore.cs
│ │ │ ├── frmRestore.designer.cs
│ │ │ ├── frmRestore.resx
│ │ │ ├── frmStock.cs
│ │ │ ├── frmStock.designer.cs
│ │ │ └── frmStock.resx
│ │ └── UserInfor
│ │ ├── frmPeopleInfo.cs
│ │ ├── frmPeopleInfo.designer.cs
│ │ ├── frmPeopleInfo.resx
│ │ ├── frmPeopleList.cs
│ │ ├── frmPeopleList.designer.cs
│ │ └── frmPeopleList.resx
│ ├── houseAgency.sln
│ └── houseAgency.suo
└── 程序使用说明.docx
19 directories, 138 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论