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.HighWay.SellData.Interface;
|
|
|
|
namespace SuperMap.RealEstate.HighWay.SellData.Business
|
|
{
|
|
/// <summary>
|
|
/// T_GASSHIFTSALES_加油站工班销售汇总报表数据字段 类
|
|
/// </summary>
|
|
public partial class GASSHIFTSALES:References.GASSHIFTSALES
|
|
{
|
|
#region 构造函数
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
public GASSHIFTSALES() : base() { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="outer">IBusinessModel接口对象</param>
|
|
public GASSHIFTSALES(IBusinessModel outer) : base(outer) { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="transaction">事务对象</param>
|
|
public GASSHIFTSALES(Transaction transaction) : base(transaction) { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="dataRow">DataTable的数据行</param>
|
|
public GASSHIFTSALES(DataRow dataRow) : base(dataRow) { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="dataRow">DataTable的数据行</param>
|
|
/// <param name="outer">IBusinessModel接口对象</param>
|
|
public GASSHIFTSALES(DataRow dataRow, IBusinessModel outer) : base(dataRow, outer) { }
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="dataRow">DataTable的数据行</param>
|
|
/// <param name="transaction">事务对象</param>
|
|
public GASSHIFTSALES(DataRow dataRow, Transaction transaction) : base(dataRow, transaction) { }
|
|
#endregion
|
|
|
|
#region FillCollection 获取集合对象
|
|
/// <summary />
|
|
public List<GASSHIFTSALES> FillCollection(string whereSQLString, Dictionary<string, object> Parameters = null)
|
|
{
|
|
List<GASSHIFTSALES> _List = new List<GASSHIFTSALES>();
|
|
DataTable _DataTable = this.FillDataTable(whereSQLString,Parameters);
|
|
foreach (DataRow _DataRow in _DataTable.Rows)
|
|
{
|
|
using (GASSHIFTSALES _Item = new GASSHIFTSALES(_DataRow, this))
|
|
{
|
|
_List.Add(_Item);
|
|
}
|
|
}
|
|
return _List;
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|
|
|