资源简介
此源码是作者花几十元买的,希望对大家有用,谢谢
功能描述:
具备以下的功能:
1、收费管理
2、住户管理
3、房间设置
4、单价设置
5、通知单打印
6、导入收费Excel表
7、导出收费Excel表
8、导入住户Excel表
9、导出住户Excel表
打印通知单功能采用水晶报表制作,很方便拓展。VS2010下安装水晶报表。
软件采用多层模式开发,界面非常漂亮。是一款适合您应用到各种小区或者大厦的物业管理软件。同时也是一款非常适合学习或者做二次开发的软件。
代码片段和文件信息
using System;
using System.Data;
using System.Text;
using System.Data.OleDb;
using zoruan.DBUtility;//请先添加引用
namespace zoruan.DAL
{
///
/// 数据访问类Building。
///
public class BuildingDAL
{
public BuildingDAL()
{}
#region 成员方法
///
/// 是否存在该记录
///
public bool Exists(int Building_ID)
{
StringBuilder strSql=new StringBuilder();
strSql.Append(“select count(1) from Building“);
strSql.Append(“ where Building_ID=@Building_ID “);
OleDbParameter[] parameters = {
new OleDbParameter(“@Building_ID“ OleDbType.Integer4)};
parameters[0].Value = Building_ID;
return DbHelperOleDb.Exists(strSql.ToString()parameters);
}
///
/// 增加一条数据
///
public int Add(zoruan.Model.Building model)
{
StringBuilder strSql=new StringBuilder();
strSql.Append(“insert into Building(“);
strSql.Append(“Building_Name)“);
strSql.Append(“ values (“);
strSql.Append(“@Building_Name)“);
OleDbParameter[] parameters = {
new OleDbParameter(“@Building_Name“ OleDbType.VarChar50)};
parameters[0].Value = model.Building_Name;
return DbHelperOleDb.ExecuteSql(strSql.ToString()parameters);
}
///
/// 更新一条数据
///
public int Update(zoruan.Model.Building model)
{
StringBuilder strSql=new StringBuilder();
strSql.Append(“update Building set “);
strSql.Append(“Building_Name=@Building_Name“);
strSql.Append(“ where Building_ID=@Building_ID “);
OleDbParameter[] parameters = {
new OleDbParameter(“@Building_Name“ OleDbType.VarChar50)
new OleDbParameter(“@Building_ID“ OleDbType.Integer4)};
parameters[0].Value = model.Building_Name;
parameters[1].Value = model.Building_ID;
return DbHelperOleDb.ExecuteSql(strSql.ToString()parameters);
}
///
/// 删除一条数据
///
public int Delete(int Building_ID)
{
StringBuilder strSql=new StringBuilder();
strSql.Append(“delete from Building “);
strSql.Append(“ where Building_ID=@Building_ID “);
OleDbParameter[] parameters = {
new OleDbParameter(“@Building_ID“ OleDbType.Integer4)};
parameters[0].Value = Building_ID;
return DbHelperOleDb.ExecuteSql(strSql.ToString()parameters);
}
///
/// 得到一个对象实体
///
public zoruan.Model.Building GetModel(int Building_ID)
{
StringBuilder strSql=new StringBuilder();
strSql.Append(“select Building_IDBuilding_Name from Building “);
strSql.Append(“ where Building_ID=@Building_ID “);
OleDbParameter[] parameters = {
new OleDbParameter(“@Building_ID“ OleDbType.Integer4)};
parameters[0].Value = Building_ID;
zoruan.Model.Building model=new zoruan.Model.Building();
DataSet ds=DbHelperOleDb.Query(strSql.ToString()parameters);
if(ds.Tables[0].Rows.Count>0)
{
if(d
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-04-25 16:46 DX0110-小区物业管理系统源码\
目录 0 2016-04-25 16:46 DX0110-小区物业管理系统源码\.vs\
目录 0 2016-04-25 16:46 DX0110-小区物业管理系统源码\.vs\WuYe\
目录 0 2016-04-26 01:41 DX0110-小区物业管理系统源码\.vs\WuYe\v14\
文件 90624 2016-04-27 02:28 DX0110-小区物业管理系统源码\.vs\WuYe\v14\.suo
目录 0 2016-04-25 16:38 DX0110-小区物业管理系统源码\DAL\
文件 4681 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\BuildingDAL.cs
文件 42027 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\CostListDAL.cs
文件 2933 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\DAL.csproj
文件 5497 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\FloorDAL.cs
文件 13651 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\HouseholdListDAL.cs
目录 0 2016-04-25 16:37 DX0110-小区物业管理系统源码\DAL\Properties\
文件 1344 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\Properties\AssemblyInfo.cs
文件 16614 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\RoomDAL.cs
文件 13313 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\UnitPriceDAL.cs
文件 6928 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\UserDAL.cs
文件 4550 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\UsersDAL.cs
目录 0 2016-04-25 16:38 DX0110-小区物业管理系统源码\DAL\bin\
目录 0 2016-04-26 11:42 DX0110-小区物业管理系统源码\DAL\bin\Debug\
文件 64512 2016-04-26 11:42 DX0110-小区物业管理系统源码\DAL\bin\Debug\DAL.dll
文件 73216 2016-04-26 11:42 DX0110-小区物业管理系统源码\DAL\bin\Debug\DAL.pdb
文件 3543552 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\bin\Debug\DevComponents.DotNetBar2.dll
文件 102400 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\bin\Debug\IBatisNet.Common.dll
文件 249856 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\bin\Debug\IBatisNet.DataMapper.dll
文件 81920 2016-04-26 11:42 DX0110-小区物业管理系统源码\DAL\bin\Debug\Maticsoft.DBUtility.dll
文件 175616 2016-04-26 11:42 DX0110-小区物业管理系统源码\DAL\bin\Debug\Maticsoft.DBUtility.pdb
文件 1100392 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\bin\Debug\Microsoft.Office.Interop.Excel.dll
文件 15872 2016-04-26 11:42 DX0110-小区物业管理系统源码\DAL\bin\Debug\Model.dll
文件 73216 2016-04-26 11:42 DX0110-小区物业管理系统源码\DAL\bin\Debug\Model.pdb
文件 274432 2014-09-15 13:45 DX0110-小区物业管理系统源码\DAL\bin\Debug\MySql.Data.dll
目录 0 2016-04-25 16:37 DX0110-小区物业管理系统源码\DAL\bin\Release\
............此处省略431个文件信息
相关资源
- 压缩感知中用OMP算法重构视频序列程
- 物业系统 pb源码
- 完整SSH的小区物业管理系统的设计与
- 小区物业管理系统含数据库文件源代
- 小区物业管理系统.zip
- 基于UML 的小区物业管理系统
- 全国小区房产数据
- 储能运行策略
- 数据库课程设计小区物业管理系统
- ERP系统性能运行分析评估报告
- FTP服务器和客户端源代码 vs2010能运行
- 小区物业管理系统设计需求书(内含
- 房天下网站爬取的武汉市小区数据
- 智能小区综合布线系统完美方案
- 物业管理界面原型
- 小区wifi覆盖方案
- VFP制作的物业管理系统毕业设计
- 智能化小区网络规划与设计
- STM32实现printf和scanf源代码,保证能运
- 基于最小区域圆的圆度计算程序
- 物业管理系统源码+数据库
- 能运行很好的GPC程序。
- springboot开发的物业管理系统-毕业设计
- 数据库课程设计——物业管理系统
- 最新小区的城市设计总平面图cad文件
- 某小区网络设计方案
- 计算机网络之小区网络设计方案
- Linux下的QT车牌识别门禁系统基于ope
- 计算机网络课程设计 小区局域网
- 智能化小区监控系统图.dwg
评论
共有 条评论