74 lines
2.6 KiB
C#
74 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using SuperMap.RealEstate.Enums;
|
|
using SuperMap.RealEstate.ServiceModel;
|
|
using SuperMap.RealEstate.Utility;
|
|
using SuperMap.RealEstate.Web.UI;
|
|
using SuperMap.RealEstate.Web.UI.WebControls;
|
|
using SuperMap.RealEstate.Web.Utility;
|
|
using SuperMap.RealEstate.Finance.Running.Interface;
|
|
|
|
namespace SuperMap.RealEstate.Finance.Running.Business
|
|
{
|
|
/// <summary>
|
|
/// T_RECEIVABLESINFO_收款人信息表 类
|
|
/// </summary>
|
|
public partial class RECEIVABLESINFO:References.RECEIVABLESINFO
|
|
{
|
|
#region 构造函数
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
public RECEIVABLESINFO() : base() { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="outer">IBusinessModel接口对象</param>
|
|
public RECEIVABLESINFO(IBusinessModel outer) : base(outer) { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="transaction">事务对象</param>
|
|
public RECEIVABLESINFO(Transaction transaction) : base(transaction) { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="dataRow">DataTable的数据行</param>
|
|
public RECEIVABLESINFO(DataRow dataRow) : base(dataRow) { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="dataRow">DataTable的数据行</param>
|
|
/// <param name="outer">IBusinessModel接口对象</param>
|
|
public RECEIVABLESINFO(DataRow dataRow, IBusinessModel outer) : base(dataRow, outer) { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="dataRow">DataTable的数据行</param>
|
|
/// <param name="transaction">事务对象</param>
|
|
public RECEIVABLESINFO(DataRow dataRow, Transaction transaction) : base(dataRow, transaction) { }
|
|
#endregion
|
|
|
|
#region FillCollection 获取集合对象
|
|
/// <summary />
|
|
public List<RECEIVABLESINFO> FillCollection(string whereSQLString, Dictionary<string, object> Parameters = null)
|
|
{
|
|
List<RECEIVABLESINFO> _List = new List<RECEIVABLESINFO>();
|
|
DataTable _DataTable = this.FillDataTable(whereSQLString,Parameters);
|
|
foreach (DataRow _DataRow in _DataTable.Rows)
|
|
{
|
|
using (RECEIVABLESINFO _Item = new RECEIVABLESINFO(_DataRow, this))
|
|
{
|
|
_List.Add(_Item);
|
|
}
|
|
}
|
|
return _List;
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|
|
|