/// <summary> /// 获得数据列表 /// </summary> public List <Model.tb_churu> DataTableToList(DataTable dt) { List <Model.tb_churu> modelList = new List <Model.tb_churu>(); int rowsCount = dt.Rows.Count; if (rowsCount > 0) { Model.tb_churu model; for (int n = 0; n < rowsCount; n++) { model = new Model.tb_churu(); if (dt.Rows[n]["cr_id"] != null && dt.Rows[n]["cr_id"].ToString() != "") { model.cr_id = int.Parse(dt.Rows[n]["cr_id"].ToString()); } if (dt.Rows[n]["cr_oid"] != null && dt.Rows[n]["cr_oid"].ToString() != "") { model.cr_oid = int.Parse(dt.Rows[n]["cr_oid"].ToString()); } if (dt.Rows[n]["cr_pid"] != null && dt.Rows[n]["cr_pid"].ToString() != "") { model.cr_pid = int.Parse(dt.Rows[n]["cr_pid"].ToString()); } if (dt.Rows[n]["cr_time"] != null && dt.Rows[n]["cr_time"].ToString() != "") { model.cr_time = dt.Rows[n]["cr_time"].ToString(); } if (dt.Rows[n]["cr_type"] != null && dt.Rows[n]["cr_type"].ToString() != "") { model.cr_type = int.Parse(dt.Rows[n]["cr_type"].ToString()); } if (dt.Rows[n]["cr_num"] != null && dt.Rows[n]["cr_num"].ToString() != "") { model.cr_num = int.Parse(dt.Rows[n]["cr_num"].ToString()); } if (dt.Rows[n]["cr_yan"] != null && dt.Rows[n]["cr_yan"].ToString() != "") { model.cr_yan = int.Parse(dt.Rows[n]["cr_yan"].ToString()); } if (dt.Rows[n]["cr_price"] != null && dt.Rows[n]["cr_price"].ToString() != "") { model.cr_price = decimal.Parse(dt.Rows[n]["cr_price"].ToString()); } if (dt.Rows[n]["cr_remark"] != null && dt.Rows[n]["cr_remark"].ToString() != "") { model.cr_remark = dt.Rows[n]["cr_remark"].ToString(); } modelList.Add(model); } } return(modelList); }
/// <summary> /// 更新一条数据 /// </summary> public bool Update(Model.tb_churu model) { return(dal.Update(model)); }
/// <summary> /// 增加一条数据 /// </summary> public int Add(Model.tb_churu model) { return(dal.Add(model)); }