You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
143 lines
3.6 KiB
C#
143 lines
3.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using DSWeb.SoftMng.Model;
|
|
// ReSharper disable once CheckNamespace
|
|
namespace DSWeb.SoftMng.BLL {
|
|
//Dec_HsQua
|
|
public partial class Dec_HsQuaBLL
|
|
{
|
|
private readonly DAL.Dec_HsQuaDAL dal=new DAL.Dec_HsQuaDAL();
|
|
#region Method
|
|
/// <summary>
|
|
/// 是否存在该记录
|
|
/// </summary>
|
|
public bool Exists(string GID)
|
|
{
|
|
return dal.Exists(GID);
|
|
}
|
|
/// <summary>
|
|
/// 增加一条数据
|
|
/// </summary>
|
|
public int Add(Dec_HsQua model)
|
|
{
|
|
return dal.Add(model);
|
|
}
|
|
/// <summary>
|
|
/// 更新一条数据
|
|
/// </summary>
|
|
public int Update(Dec_HsQua model)
|
|
{
|
|
return dal.Update(model);
|
|
}
|
|
/// <summary>
|
|
/// 删除一条数据
|
|
/// </summary>
|
|
public int Delete(string GID)
|
|
{
|
|
return dal.Delete(GID);
|
|
}
|
|
/// <summary>
|
|
/// 按条件批量删除(有风险)
|
|
/// </summary>
|
|
public int DeleteListWhere(string strWhere)
|
|
{
|
|
return dal.DeleteListWhere(strWhere);
|
|
}
|
|
/// <summary>
|
|
/// 得到一个对象实体
|
|
/// </summary>
|
|
public Dec_HsQua GetModel(string GID)
|
|
{
|
|
DataSet ds = dal.GetModel(GID);
|
|
if(ds.Tables.Count> 0){
|
|
var dt = ds.Tables[0];
|
|
if(dt.Rows.Count>0){
|
|
var dr = dt.Rows[0];
|
|
return DataRowToModel(dr);
|
|
}
|
|
return null;
|
|
}
|
|
return null;
|
|
}
|
|
/// <summary>
|
|
/// 获得数据列表
|
|
/// </summary>
|
|
public DataSet GetList(string strWhere)
|
|
{
|
|
return dal.GetList(strWhere);
|
|
}
|
|
/// <summary>
|
|
/// 获得前几行数据
|
|
/// </summary>
|
|
public DataSet GetList(int Top,string strWhere,string filedOrder)
|
|
{
|
|
return dal.GetList(Top,strWhere,filedOrder);
|
|
}
|
|
/// <summary>
|
|
/// 获得数据列表
|
|
/// </summary>
|
|
public List<Dec_HsQua> GetModelList(string strWhere)
|
|
{
|
|
DataSet ds = dal.GetList(strWhere);
|
|
return DataTableToList(ds.Tables[0]);
|
|
}
|
|
/// <summary>
|
|
/// 获得数据列表
|
|
/// </summary>
|
|
public List<Dec_HsQua> DataTableToList(DataTable dt)
|
|
{
|
|
List<Dec_HsQua> modelList = new List<Dec_HsQua>();
|
|
int rowsCount = dt.Rows.Count;
|
|
if (rowsCount > 0)
|
|
{
|
|
for (int n = 0; n < rowsCount; n++)
|
|
{
|
|
var model = DataRowToModel(dt.Rows[n]);
|
|
modelList.Add(model);
|
|
}
|
|
}
|
|
return modelList;
|
|
}
|
|
/// <summary>
|
|
/// 获得数据
|
|
/// </summary>
|
|
public Dec_HsQua DataRowToModel(DataRow dr)
|
|
{
|
|
var model = new Dec_HsQua();
|
|
model.GID= dr["GID"].ToString(); model.HSCode= dr["HSCode"].ToString(); model.Value= dr["Value"].ToString(); model.Name= dr["Name"].ToString(); model.Difference= dr["Difference"].ToString(); if(dr["Effective"].ToString()!="")
|
|
model.Effective=int.Parse(dr["Effective"].ToString());
|
|
|
|
return model;
|
|
}
|
|
/// <summary>
|
|
/// 获得数据列表
|
|
/// </summary>
|
|
public DataSet GetAllList()
|
|
{
|
|
return GetList("");
|
|
}
|
|
/// <summary>
|
|
/// 分页获取数据列表
|
|
/// </summary>
|
|
/// <param name="startIndex"></param>
|
|
/// <param name="limit"></param>
|
|
/// <param name="strWhere"></param>
|
|
/// <param name="orderby"></param>
|
|
/// <returns></returns>
|
|
public List<Dec_HsQua> GetModelList(int startIndex, int limit, string strWhere, string orderby)
|
|
{
|
|
int endIndex = startIndex + limit;
|
|
DataSet ds = dal.GetListByPage(strWhere,orderby,startIndex,endIndex);
|
|
return DataTableToList(ds.Tables[0]);
|
|
}
|
|
/// <summary>
|
|
/// 获取记录总数
|
|
/// </summary>
|
|
public int GetRecordCount(string strWhere)
|
|
{
|
|
return dal.GetRecordCount(strWhere);
|
|
}
|
|
#endregion
|
|
}
|
|
} |