/// <summary> /// 增加一条数据 /// </summary> public int Add(jdgl_res_head_service.Model.Fwx_other model) { return(dal.Add(model)); }
/// <summary> /// 更新一条数据 /// </summary> public bool Update(jdgl_res_head_service.Model.Fwx_other model) { return(dal.Update(model)); }
/// <summary> /// 获得数据列表 /// </summary> public List <jdgl_res_head_service.Model.Fwx_other> DataTableToList(DataTable dt) { List <jdgl_res_head_service.Model.Fwx_other> modelList = new List <jdgl_res_head_service.Model.Fwx_other>(); int rowsCount = dt.Rows.Count; if (rowsCount > 0) { jdgl_res_head_service.Model.Fwx_other model; for (int n = 0; n < rowsCount; n++) { model = new jdgl_res_head_service.Model.Fwx_other(); if (dt.Rows[n]["id"] != null && dt.Rows[n]["id"].ToString() != "") { model.id = int.Parse(dt.Rows[n]["id"].ToString()); } if (dt.Rows[n]["yydh"] != null && dt.Rows[n]["yydh"].ToString() != "") { model.yydh = dt.Rows[n]["yydh"].ToString(); } if (dt.Rows[n]["qymc"] != null && dt.Rows[n]["qymc"].ToString() != "") { model.qymc = dt.Rows[n]["qymc"].ToString(); } if (dt.Rows[n]["lsbh"] != null && dt.Rows[n]["lsbh"].ToString() != "") { model.lsbh = dt.Rows[n]["lsbh"].ToString(); } if (dt.Rows[n]["fjrb"] != null && dt.Rows[n]["fjrb"].ToString() != "") { model.fjrb = dt.Rows[n]["fjrb"].ToString(); } if (dt.Rows[n]["fjbh"] != null && dt.Rows[n]["fjbh"].ToString() != "") { model.fjbh = dt.Rows[n]["fjbh"].ToString(); } if (dt.Rows[n]["ddsj"] != null && dt.Rows[n]["ddsj"].ToString() != "") { model.ddsj = DateTime.Parse(dt.Rows[n]["ddsj"].ToString()); } if (dt.Rows[n]["lksj"] != null && dt.Rows[n]["lksj"].ToString() != "") { model.lksj = DateTime.Parse(dt.Rows[n]["lksj"].ToString()); } if (dt.Rows[n]["bz"] != null && dt.Rows[n]["bz"].ToString() != "") { model.bz = dt.Rows[n]["bz"].ToString(); } if (dt.Rows[n]["zyzt"] != null && dt.Rows[n]["zyzt"].ToString() != "") { model.zyzt = dt.Rows[n]["zyzt"].ToString(); } if (dt.Rows[n]["czsj"] != null && dt.Rows[n]["czsj"].ToString() != "") { model.czsj = DateTime.Parse(dt.Rows[n]["czsj"].ToString()); } if (dt.Rows[n]["cznr"] != null && dt.Rows[n]["cznr"].ToString() != "") { model.cznr = dt.Rows[n]["cznr"].ToString(); } if (dt.Rows[n]["czy"] != null && dt.Rows[n]["czy"].ToString() != "") { model.czy = dt.Rows[n]["czy"].ToString(); } if (dt.Rows[n]["is_top"] != null && dt.Rows[n]["is_top"].ToString() != "") { if ((dt.Rows[n]["is_top"].ToString() == "1") || (dt.Rows[n]["is_top"].ToString().ToLower() == "true")) { model.is_top = true; } else { model.is_top = false; } } if (dt.Rows[n]["is_select"] != null && dt.Rows[n]["is_select"].ToString() != "") { if ((dt.Rows[n]["is_select"].ToString() == "1") || (dt.Rows[n]["is_select"].ToString().ToLower() == "true")) { model.is_select = true; } else { model.is_select = false; } } if (dt.Rows[n]["shsc"] != null && dt.Rows[n]["shsc"].ToString() != "") { if ((dt.Rows[n]["shsc"].ToString() == "1") || (dt.Rows[n]["shsc"].ToString().ToLower() == "true")) { model.shsc = true; } else { model.shsc = false; } } modelList.Add(model); } } return(modelList); }