using System; using System.Collections.Generic; using System.Data; using DSWeb.SoftMng.Model; // ReSharper disable once CheckNamespace namespace DSWeb.SoftMng.BLL { //sys_CustomColumnsConfig public partial class sys_CustomColumnsConfigBLL { private readonly DAL.sys_CustomColumnsConfigDAL dal=new DAL.sys_CustomColumnsConfigDAL(); #region Method /// /// 是否存在该记录 /// public bool Exists(string GId) { return dal.Exists(GId); } /// /// 增加一条数据 /// public int Add(sys_CustomColumnsConfig model) { return dal.Add(model); } /// /// 更新一条数据 /// public int Update(sys_CustomColumnsConfig model) { return dal.Update(model); } /// /// 删除一条数据 /// public int Delete(string GId) { return dal.Delete(GId); } /// /// 按条件批量删除(有风险) /// public int DeleteListWhere(string strWhere) { return dal.DeleteListWhere(strWhere); } /// /// 得到一个对象实体 /// public sys_CustomColumnsConfig 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; } /// /// 获得数据列表 /// public DataSet GetList(string strWhere) { return dal.GetList(strWhere); } /// /// 获得前几行数据 /// public DataSet GetList(int Top,string strWhere,string filedOrder) { return dal.GetList(Top,strWhere,filedOrder); } /// /// 获得数据列表 /// public List GetModelList(string strWhere) { DataSet ds = dal.GetList(strWhere); return DataTableToList(ds.Tables[0]); } /// /// 获得数据列表 /// public List DataTableToList(DataTable dt) { List modelList = new List(); 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; } /// /// 获得数据 /// public sys_CustomColumnsConfig DataRowToModel(DataRow dr) { var model = new sys_CustomColumnsConfig(); model.GId= dr["GId"].ToString(); model.NodeName= dr["NodeName"].ToString(); model.UserCode= dr["UserCode"].ToString(); model.UserConfig= dr["UserConfig"].ToString(); return model; } /// /// 获得数据列表 /// public DataSet GetAllList() { return GetList(""); } /// /// 分页获取数据列表 /// /// /// /// /// /// public List 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]); } /// /// 获取记录总数 /// public int GetRecordCount(string strWhere) { return dal.GetRecordCount(strWhere); } #endregion } }