危险源管理模块接入真实数据库:新增危大/超危工程、风险控制清单、安全验收、安全巡检、临时用电管理(含前端页面、BLL/API服务、WebAPI控制器、Model项、SQL脚本与接口文档)

排除 CreateModel.bat(含明文sa密码与本地服务器名,未入库)
This commit is contained in:
2026-08-24 11:07:59 +08:00
parent 4925a6c4b0
commit 55944d732a
323 changed files with 9806 additions and 922 deletions
@@ -306,7 +306,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue1.CellStyle = styleCenter;
celCellValue1.SetCellValue((100.0 * int.Parse(row["curr_pass_film"].ToString()) / int.Parse(row["curr_total_film"].ToString())).ToString("0.00"));
}
catch (Exception e1)
catch (Exception)
{ }
recordSheet.GetRow(5 + i).CreateCell(14).SetCellValue(row["pro_total_film"].ToString());
@@ -322,7 +322,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue2.CellStyle = styleCenter;
celCellValue2.SetCellValue((100.0 * int.Parse(row["pro_pass_film"].ToString()) / int.Parse(row["pro_total_film"].ToString())).ToString("0.00"));
}
catch (Exception e2)
catch (Exception)
{ }
recordSheet.GetRow(5 + i).CreateCell(17).SetCellValue(row["total_film"].ToString());
recordSheet.GetRow(5 + i).GetCell(17).CellStyle = styleCenter;
@@ -338,7 +338,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue3.SetCellValue((100.0 * int.Parse(row["pass_film"].ToString()) / int.Parse(row["total_film"].ToString())).ToString("0.00"));
}
catch (Exception e3)
catch (Exception)
{ }
recordSheet.GetRow(5 + i).CreateCell(20).SetCellValue(row["recurr_total_film"].ToString());
recordSheet.GetRow(5 + i).GetCell(20).CellStyle = styleCenter;
@@ -353,7 +353,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue4.SetCellValue((100.0 * int.Parse(row["recurr_pass_film"].ToString()) / int.Parse(row["recurr_total_film"].ToString())).ToString("0.00"));
}
catch (Exception e4)
catch (Exception)
{ }
recordSheet.GetRow(5 + i).CreateCell(23).SetCellValue(row["retotal_total_film"].ToString());
recordSheet.GetRow(5 + i).GetCell(23).CellStyle = styleCenter;
@@ -368,7 +368,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue5.SetCellValue((100.0 * int.Parse(row["retotal_pass_film"].ToString()) / int.Parse(row["retotal_total_film"].ToString())).ToString("0.00"));
}
catch (Exception e5)
catch (Exception)
{ }
recordSheet.GetRow(5 + i).CreateCell(26).SetCellValue(row["curr_trust_count_total"].ToString());
@@ -387,7 +387,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue5.SetCellValue((100.0 * int.Parse(row["curr_pass_point"].ToString()) / int.Parse(row["curr_check_count_point"].ToString())).ToString("0.00"));
}
catch (Exception e6)
catch (Exception)
{ }
recordSheet.GetRow(5 + i).CreateCell(30).SetCellValue(row["trust_count_total"].ToString());
recordSheet.GetRow(5 + i).GetCell(30).CellStyle = styleCenter;
@@ -406,7 +406,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue5.SetCellValue((100.0 * int.Parse(row["total_pass_point"].ToString()) / int.Parse(row["total_check_count_point"].ToString())).ToString("0.00"));
}
catch (Exception e7)
catch (Exception)
{ }
@@ -428,7 +428,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue1.SetCellValue((100.0 * curr_pass_film / curr_total_film).ToString("0.00"));
}
}
catch (Exception e1)
catch (Exception)
{ }
recordSheet.GetRow(dt.Rows.Count+6).CreateCell(15).SetCellValue(pro_pass_film + "");
@@ -444,7 +444,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue2.SetCellValue((100.0 * pro_pass_film / pro_total_film).ToString("0.00"));
}
}
catch (Exception e2)
catch (Exception)
{ }
recordSheet.GetRow(dt.Rows.Count + 6).CreateCell(17).SetCellValue(total_film + "");
recordSheet.GetRow(dt.Rows.Count+6).GetCell(17).CellStyle = styleCenter;
@@ -459,7 +459,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue3.SetCellValue((100.0 * pass_film / total_film).ToString("0.00"));
}
}
catch (Exception e3)
catch (Exception)
{ }
recordSheet.GetRow(dt.Rows.Count+6).CreateCell(20).SetCellValue(recurr_pass_film + "");
recordSheet.GetRow(dt.Rows.Count+6).GetCell(20).CellStyle = styleCenter;
@@ -475,7 +475,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue4.SetCellValue((100.0 * recurr_pass_film / recurr_total_film).ToString("0.00"));
}
}
catch (Exception e4)
catch (Exception)
{ }
recordSheet.GetRow(dt.Rows.Count+6).CreateCell(23).SetCellValue(retotal_pass_film + "");
recordSheet.GetRow(dt.Rows.Count+6).GetCell(23).CellStyle = styleCenter;
@@ -490,7 +490,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue5.SetCellValue((100.0 * retotal_pass_film / retotal_total_film).ToString("0.00"));
}
}
catch (Exception e5)
catch (Exception)
{ }
recordSheet.GetRow(dt.Rows.Count + 6).CreateCell(26).SetCellValue(curr_trust_count_total + "");
recordSheet.GetRow(dt.Rows.Count + 6).GetCell(26).CellStyle = styleCenter;
@@ -508,7 +508,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
}
}
catch (Exception e6)
catch (Exception)
{ }
recordSheet.GetRow(dt.Rows.Count + 6).CreateCell(30).SetCellValue(trust_count_total + "");
@@ -527,7 +527,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
}
}
catch (Exception e7)
catch (Exception)
{ }
}
@@ -546,7 +546,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue1.SetCellValue((100.0 * curr_pass_film / curr_total_film).ToString("0.00"));
}
}
catch (Exception e1)
catch (Exception)
{ }
recordSheet.GetRow(16).CreateCell(15).SetCellValue(pro_pass_film+"");
@@ -562,7 +562,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue2.SetCellValue((100.0 * pro_pass_film / pro_total_film).ToString("0.00"));
}
}
catch (Exception e2)
catch (Exception)
{ }
recordSheet.GetRow(16).CreateCell(17).SetCellValue(total_film + "");
recordSheet.GetRow(16).GetCell(17).CellStyle = styleCenter;
@@ -577,7 +577,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue3.SetCellValue((100.0 * pass_film / total_film).ToString("0.00"));
}
}
catch (Exception e3)
catch (Exception)
{ }
recordSheet.GetRow(16).CreateCell(20).SetCellValue(recurr_pass_film+"");
recordSheet.GetRow(16).GetCell(20).CellStyle = styleCenter;
@@ -592,7 +592,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
celCellValue4.SetCellValue((100.0 * recurr_pass_film / recurr_total_film).ToString("0.00"));
}
}
catch (Exception e4)
catch (Exception)
{ }
recordSheet.GetRow(16).CreateCell(23).SetCellValue(retotal_pass_film+"");
recordSheet.GetRow(16).GetCell(23).CellStyle = styleCenter;
@@ -608,7 +608,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
}
}
catch (Exception e5)
catch (Exception)
{ }
recordSheet.GetRow(16).CreateCell(26).SetCellValue(curr_trust_count_total + "");
recordSheet.GetRow(16).GetCell(26).CellStyle = styleCenter;
@@ -626,7 +626,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
}
}
catch (Exception e6)
catch (Exception)
{ }
recordSheet.GetRow(16).CreateCell(30).SetCellValue(trust_count_total + "");
@@ -645,7 +645,7 @@ namespace FineUIPro.Web.HJGL.WeldingReport
}
}
catch (Exception e7)
catch (Exception)
{ }