/// <summary> /// 获得数据列表 /// </summary> public List <Hownet.Model.BAS_Region> DataTableToList(DataTable dt) { List <Hownet.Model.BAS_Region> modelList = new List <Hownet.Model.BAS_Region>(); int rowsCount = dt.Rows.Count; if (rowsCount > 0) { Hownet.Model.BAS_Region model; for (int n = 0; n < rowsCount; n++) { model = new Hownet.Model.BAS_Region(); model.CnName = dt.Rows[n]["CnName"].ToString(); model.EnName = dt.Rows[n]["EnName"].ToString(); if (dt.Rows[n]["IsValid"] != null && dt.Rows[n]["IsValid"].ToString() != "") { if ((dt.Rows[n]["IsValid"].ToString() == "1") || (dt.Rows[n]["IsValid"].ToString().ToLower() == "true")) { model.IsValid = true; } else { model.IsValid = false; } } if (dt.Rows[n]["ID"] != null && dt.Rows[n]["ID"].ToString() != "") { model.ID = int.Parse(dt.Rows[n]["ID"].ToString()); } if (dt.Rows[n]["IsEnd"] != null && dt.Rows[n]["IsEnd"].ToString() != "") { model.IsEnd = int.Parse(dt.Rows[n]["IsEnd"].ToString()); } modelList.Add(model); } } return(modelList); }
/// <summary> /// 更新一条数据 /// </summary> public bool Update(Hownet.Model.BAS_Region model) { return(dal.Update(model)); }
/// <summary> /// 增加一条数据 /// </summary> public int Add(Hownet.Model.BAS_Region model) { return(dal.Add(model)); }