• 大小: 11.37MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-07-29
  • 语言: 其他
  • 标签: 物业  管理系统  

资源简介

功能描述: 基本信息管理 业主登记管理,业主迁出管理,楼栋信息管理,公共财产管理 物业管理 服务投诉管理,业主维修管理,公共维修管理,车位使用管理,突发事件管理 费用管理 水电气费登记,水电气费查询,水电气费交纳,物管费用登记,物管费用查询,物管费用交纳,其他费用交纳 报表管理 业主统计报表,投诉统计报表,业主维修报表,公共维修报表,收入统计报表 系统管理 分配用户权限,修改用户密码,小区信息设置

资源截图

代码片段和文件信息

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......     65536  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\DAL.dll

    .......     79360  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\DAL.pdb

    .......   3543552  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\DevComponents.DotNetBar2.dll

    .......    102400  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\IBatisNet.Common.dll

    .......    249856  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\IBatisNet.DataMapper.dll

    .......     86016  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\Maticsoft.DBUtility.dll

    .......    187904  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\Maticsoft.DBUtility.pdb

    .......   1100392  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\Microsoft.Office.Interop.Excel.dll

    .......     64088  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\Microsoft.Vbe.Interop.dll

    .......     16896  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\Model.dll

    .......     77312  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\Model.pdb

    .......    274432  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\MySql.Data.dll

    .......    223800  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Debug\office.dll

    .......     50688  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Release\DAL.pdb

    .......    102400  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Release\IBatisNet.Common.dll

    .......    249856  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Release\IBatisNet.DataMapper.dll

    .......     57344  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Release\Maticsoft.DBUtility.dll

    .......      9728  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Release\Model.dll

    .......     46592  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Release\Model.pdb

    .......    274432  2014-09-15 13:45  小区物业管理系统源码\DAL\bin\Release\MySql.Data.dll

     文件    3621836  2015-04-27 11:29  小区物业管理系统源码\DAL\bin\国内最大的免费商业源码下载平台.mht

     文件      14108  2015-07-21 10:13  小区物业管理系统源码\DAL\bin\百纳科技源码.png

    .......      4681  2014-09-15 13:45  小区物业管理系统源码\DAL\BuildingDAL.cs

    .......     42027  2014-09-15 13:45  小区物业管理系统源码\DAL\CostListDAL.cs

    .......      2933  2014-09-15 13:45  小区物业管理系统源码\DAL\DAL.csproj

    .......      5497  2014-09-15 13:45  小区物业管理系统源码\DAL\FloorDAL.cs

    .......     13651  2014-09-15 13:45  小区物业管理系统源码\DAL\HouseholdListDAL.cs

    .......      3450  2014-09-15 13:45  小区物业管理系统源码\DAL\obj\Debug\DAL.csproj.FileListAbsolute.txt

    .......     47897  2014-09-15 13:45  小区物业管理系统源码\DAL\obj\Debug\DAL.csprojResolveAssemblyReference.cache

    .......     65536  2014-09-15 13:45  小区物业管理系统源码\DAL\obj\Debug\DAL.dll

............此处省略407个文件信息

评论

共有 条评论