From 61a4226bd444d19e0cc84c1062ff1cb19389440f Mon Sep 17 00:00:00 2001 From: xiaju <1784803958@qq.com> Date: Mon, 7 Apr 2025 16:08:39 +0800 Subject: [PATCH] =?UTF-8?q?HSE=E5=B7=A1=E6=A3=80=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SGGLDB_WH_2025-04-07-xiaj.sql | 82 +++++++ SGGL/BLL/API/HSSE/APIHazardRegisterService.cs | 2 +- .../HiddenRectificationAdd.aspx | 9 +- .../HiddenRectificationAdd.aspx.cs | 32 +-- .../HiddenRectificationAdd.aspx.designer.cs | 27 +-- .../HiddenRectificationList.aspx | 49 +++-- .../HiddenRectificationList.aspx.cs | 37 ++-- .../HiddenRectificationList.aspx.designer.cs | 203 +++++++++--------- SGGL/Model/Model.cs | 18 ++ 9 files changed, 279 insertions(+), 180 deletions(-) create mode 100644 DataBase/版本日志/SGGLDB_WH_2025-04-07-xiaj.sql diff --git a/DataBase/版本日志/SGGLDB_WH_2025-04-07-xiaj.sql b/DataBase/版本日志/SGGLDB_WH_2025-04-07-xiaj.sql new file mode 100644 index 00000000..b0c12d90 --- /dev/null +++ b/DataBase/版本日志/SGGLDB_WH_2025-04-07-xiaj.sql @@ -0,0 +1,82 @@ + + +ALTER VIEW [dbo].[View_Hazard_HazardRegister] +AS +SELECT Registration.HazardRegisterId, + Registration.HazardCode, + Registration.RegisterDate, + Registration.RegisterDef, + Registration.Rectification, + Registration.Place, + Registration.ResponsibleUnit, + Registration.Observer, + Registration.Risk_Level, + Registration.RectifiedDate, + Registration.ProjectId, + Project.UnitId AS PUnitId, + ProjectUnit.UnitName AS PUnitName, + Registration.states, + Registration.IsEffective, + Registration.ResponsibleMan, + Registration.CheckManId, + Registration.CheckTime, + Registration.RectificationPeriod, + Registration.ImageUrl, + Registration.RectificationImageUrl, + Registration.RectificationTime, + Registration.ConfirmMan, + Registration.ConfirmDate, + Registration.HandleIdea, + Registration.CutPayment, + Registration.ProblemTypes, + Registration.CheckSpecialId, + Registration.CheckItemDetailId, + Registration.SupCheckItemSetId, + Registration.CheckItemSetId, + Registration.SafeSupervisionId, + Registration.SafeSupervisionIsOK, + Project.ProjectName, + Registration.CheckCycle, + ISNULL(WorkArea.UnitWorkName,'') AS WorkAreaName, + Unit.UnitName as ResponsibilityUnitName, + User1.UserName AS ResponsibilityManName, + ISNULL(User1.Telephone,'') AS ResponsibilityManTel, + User2.UserName AS CheckManName, + ISNULL(User2.Telephone,'') AS CheckManTel, + User2.UnitId AS SendUnitId, + User3.UserName AS ConfirmManName, + ISNULL(User3.Telephone,'') AS ConfirmManTel, + User4.UserName AS ResponsibilityManName2, + ISNULL(User4.Telephone,'') AS ResponsibilityMan2Tel, + (CASE WHEN Registration.states='1' and (Registration.SafeSupervisionIsOK is null OR Registration.SafeSupervisionIsOK=0) THEN '' + WHEN Registration.states='1' and Registration.SafeSupervisionIsOK=1 THEN 'ϸ' + WHEN Registration.states='2' THEN '-' + WHEN Registration.states='3' THEN 'ѱջ' + ELSE '' END ) AS StatesStr, + (CASE WHEN Registration.states='3' THEN '' ELSE 'δ' END ) AS ConfirmStr, + RegisterTypes.RegisterTypesId, + RegisterTypes.RegisterTypesName, + Registration.DIC_ID, + Registration.CCManIds, + CCManNames = STUFF(( SELECT ',' + UserName FROM Sys_User + where PATINDEX('%,' + RTRIM(Sys_User.UserId) + ',%',',' + Registration.CCManIds + ',')>0 + ORDER BY PATINDEX('%,' + RTRIM(Registration.CCManIds) + ',%',',' + Registration.CCManIds + ',') + FOR XML PATH('')), 1, 1,''), + Registration.Requirements, + Registration.Type, + Registration.HiddenType +FROM dbo.HSSE_Hazard_HazardRegister AS Registration +LEFT JOIN dbo.Base_Project AS Project ON Project.ProjectId = Registration.ProjectId +LEFT JOIN dbo.Base_Unit AS ProjectUnit ON Project.UnitId = ProjectUnit.UnitId +LEFT JOIN dbo.WBS_UnitWork AS WorkArea ON WorkArea.UnitWorkId = Registration.Place +LEFT JOIN dbo.HSSE_Hazard_HazardRegisterTypes AS RegisterTypes ON RegisterTypes.RegisterTypesId = Registration.RegisterTypesId +LEFT JOIN dbo.Base_Unit AS Unit ON Unit.UnitId = Registration.ResponsibleUnit +LEFT JOIN dbo.Sys_User AS User1 ON User1.UserId = Registration.ResponsibleMan +LEFT JOIN dbo.Sys_User AS User2 ON User2.UserId = Registration.CheckManId +LEFT JOIN dbo.Sys_User AS User3 ON User3.UserId = Registration.ConfirmMan +LEFT JOIN dbo.Sys_User AS User4 ON User4.UserId = Registration.ResponsibleMan2 + + +GO + + diff --git a/SGGL/BLL/API/HSSE/APIHazardRegisterService.cs b/SGGL/BLL/API/HSSE/APIHazardRegisterService.cs index c9bd25ed..565c5768 100644 --- a/SGGL/BLL/API/HSSE/APIHazardRegisterService.cs +++ b/SGGL/BLL/API/HSSE/APIHazardRegisterService.cs @@ -74,7 +74,7 @@ namespace BLL HandleIdea = hazardRegister.HandleIdea, CutPayment = hazardRegister.CutPayment, ProblemTypes = hazardRegister.ProblemTypes, - RegisterTypesId = hazardRegister.RegisterTypesId, + //RegisterTypesId = hazardRegister.RegisterTypesId, CheckCycle = hazardRegister.CheckCycle, SafeSupervisionIsOK = hazardRegister.SafeSupervisionIsOK, IsWx = "Y", diff --git a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx index 5db7369d..4955beeb 100644 --- a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx +++ b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx @@ -13,7 +13,7 @@ - + <%-- @@ -23,7 +23,7 @@ - + --%> + + + + + diff --git a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx.cs b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx.cs index fad4fc70..5250d7fe 100644 --- a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx.cs +++ b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx.cs @@ -90,19 +90,19 @@ namespace FineUIPro.Web.HSSE.HiddenInspection UnitWorkService.InitUnitWorkDownList(this.drpWorkArea, this.CurrUser.LoginProjectId, true); UserService.InitUserProjectIdUnitTypeDropDownList(this.drpResponsibleMan, this.CurrUser.LoginProjectId, Const.ProjectUnitType_2, true); - this.drpRegisterTypes.DataTextField = "RegisterTypesName"; - this.drpRegisterTypes.DataValueField = "RegisterTypesId"; - if (Type=="1") - { - this.drpRegisterTypes.DataSource = BLL.HSSE_Hazard_HazardRegisterTypesService.GetHazardRegisterTypesList("4"); //安全巡检类型 + //this.drpRegisterTypes.DataTextField = "RegisterTypesName"; + //this.drpRegisterTypes.DataValueField = "RegisterTypesId"; + //if (Type=="1") + //{ + // this.drpRegisterTypes.DataSource = BLL.HSSE_Hazard_HazardRegisterTypesService.GetHazardRegisterTypesList("4"); //安全巡检类型 - } - else - { - this.drpRegisterTypes.DataSource = BLL.HSSE_Hazard_HazardRegisterTypesService.GetHazardRegisterTypesList("1"); //安全巡检类型 + //} + //else + //{ + // this.drpRegisterTypes.DataSource = BLL.HSSE_Hazard_HazardRegisterTypesService.GetHazardRegisterTypesList("1"); //安全巡检类型 - } - this.drpRegisterTypes.DataBind(); + //} + //this.drpRegisterTypes.DataBind(); this.HazardRegisterId = Request.Params["HazardRegisterId"]; //新增初始化 this.txtCheckManName.Text = this.CurrUser.UserName; @@ -132,10 +132,10 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { this.drpWorkArea.SelectedValue = registration.Place; } - if (!string.IsNullOrEmpty(registration.RegisterTypesId)) - { - this.drpRegisterTypes.SelectedValue = registration.RegisterTypesId; - } + //if (!string.IsNullOrEmpty(registration.RegisterTypesId)) + //{ + // this.drpRegisterTypes.SelectedValue = registration.RegisterTypesId; + //} if (!string.IsNullOrEmpty(registration.CheckCycle)) { this.ckType.SelectedValue = registration.CheckCycle; @@ -245,7 +245,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection Model.HSSE_Hazard_HazardRegister register = new Model.HSSE_Hazard_HazardRegister(); register.ProjectId = this.CurrUser.LoginProjectId; register.ProblemTypes = "1"; //安全隐患问题 - register.RegisterTypesId = this.drpRegisterTypes.SelectedValue; + //register.RegisterTypesId = this.drpRegisterTypes.SelectedValue; register.CheckCycle = this.ckType.SelectedValue; register.Risk_Level = this.dpRiskLevel.SelectedText; register.IsEffective = "1"; diff --git a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx.designer.cs b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx.designer.cs index 2fac2582..0f77b625 100644 --- a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationAdd.aspx.designer.cs @@ -41,24 +41,6 @@ namespace FineUIPro.Web.HSSE.HiddenInspection /// protected global::FineUIPro.Form SimpleForm1; - /// - /// drpRegisterTypes 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.DropDownList drpRegisterTypes; - - /// - /// dpRiskLevel 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.DropDownList dpRiskLevel; - /// /// drpUnit 控件。 /// @@ -167,6 +149,15 @@ namespace FineUIPro.Web.HSSE.HiddenInspection /// protected global::FineUIPro.DropDownList drpHiddenType; + /// + /// dpRiskLevel 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DropDownList dpRiskLevel; + /// /// Toolbar1 控件。 /// diff --git a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx index 3e2c8785..51d5da58 100644 --- a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx +++ b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx @@ -25,9 +25,9 @@ - - + --%> @@ -35,6 +35,15 @@ AutoPostBack="true" OnTextChanged="TextBox_TextChanged" LabelAlign="right" Width="250px" LabelWidth="80px"> + + + + + + + + @@ -57,15 +66,6 @@ - - - - - - - - @@ -116,6 +116,24 @@ + + + + + + + + + + + + @@ -138,15 +156,6 @@ - - - - - - <%-- diff --git a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx.cs b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx.cs index 2a914fa9..8a1d11ce 100644 --- a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx.cs +++ b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx.cs @@ -29,17 +29,17 @@ namespace FineUIPro.Web.HSSE.HiddenInspection /// /// 巡检类型 0 日常 1 常规 /// - public string Type - { + public string Type + { get { - return (string )ViewState["Type"]; + return (string)ViewState["Type"]; } - set + set { ViewState["Type"] = value; - - } + + } } #endregion @@ -90,11 +90,11 @@ namespace FineUIPro.Web.HSSE.HiddenInspection strSql += " AND CheckManName LIKE @CheckMan"; listStr.Add(new SqlParameter("@CheckMan", "%" + this.txtCheckMan.Text.Trim() + "%")); } - if (!string.IsNullOrEmpty(this.txtType.Text.Trim())) - { - strSql += " AND RegisterTypesName LIKE @Type"; - listStr.Add(new SqlParameter("@Type", "%" + this.txtType.Text.Trim() + "%")); - } + //if (!string.IsNullOrEmpty(this.txtType.Text.Trim())) + //{ + // strSql += " AND RegisterTypesName LIKE @Type"; + // listStr.Add(new SqlParameter("@Type", "%" + this.txtType.Text.Trim() + "%")); + //} if (!string.IsNullOrEmpty(this.txtWorkAreaName.Text.Trim())) { strSql += " AND WorkAreaName LIKE @WorkAreaName"; @@ -149,7 +149,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); - Grid1.RecordCount = tb.Rows.Count; + Grid1.RecordCount = tb.Rows.Count; var table = this.GetPagedDataTable(Grid1, tb); Grid1.DataSource = table; @@ -175,7 +175,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection /// /// protected void Grid1_Sort(object sender, GridSortEventArgs e) - { + { BindGrid(); } @@ -256,7 +256,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { if (registration.CheckManId == this.CurrUser.UserId) //当前人是检查人,可以在整改前继续编辑 { - PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("HiddenRectificationAdd.aspx?HazardRegisterId={0}&&Type={1}", RegistrationId,Type, "编辑 - "))); + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("HiddenRectificationAdd.aspx?HazardRegisterId={0}&&Type={1}", RegistrationId, Type, "编辑 - "))); } else { @@ -371,7 +371,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { if (BLL.CommonService.GetAllButtonPowerList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.HSSE_HiddenRectificationListMenuId, BLL.Const.BtnAdd)) { - PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("HiddenRectificationAdd.aspx?Type={0}",Type, "登记 - "))); + PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("HiddenRectificationAdd.aspx?Type={0}", Type, "登记 - "))); } else { @@ -418,7 +418,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection if (getD != null) { BLL.LogService.AddSys_Log(this.CurrUser, getD.HazardCode, getD.HazardRegisterId, BLL.Const.HSSE_HiddenRectificationListMenuId, BLL.Const.BtnDelete); - BLL.HSSE_Hazard_HazardRegisterService.DeleteHazardRegisterByHazardRegisterId(RegistrationId); + BLL.HSSE_Hazard_HazardRegisterService.DeleteHazardRegisterByHazardRegisterId(RegistrationId); BindGrid(); ShowNotify("删除成功!", MessageBoxIcon.Success); } @@ -470,6 +470,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection #endregion #region 格式化字符串 + /// /// 获取整改前图片 /// @@ -640,7 +641,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection this.BindGrid(); } #endregion - + /// /// /// @@ -659,7 +660,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { hazardRegisterIds = hazardRegisterIds.Substring(0, hazardRegisterIds.LastIndexOf(",")); } - // PageContext.RegisterStartupScript(Window4.GetShowReference(String.Format("HiddenRectificationPrint.aspx?HazardRegisterIds={0}&CheckType={1}", hazardRegisterIds,"0", "查看 - "))); + // PageContext.RegisterStartupScript(Window4.GetShowReference(String.Format("HiddenRectificationPrint.aspx?HazardRegisterIds={0}&CheckType={1}", hazardRegisterIds,"0", "查看 - "))); this.hdRemark.Text = string.Empty; //} } diff --git a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx.designer.cs b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx.designer.cs index 99b04d08..74db3225 100644 --- a/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx.designer.cs +++ b/SGGL/FineUIPro.Web/HSSE/HiddenInspection/HiddenRectificationList.aspx.designer.cs @@ -7,11 +7,13 @@ // //------------------------------------------------------------------------------ -namespace FineUIPro.Web.HSSE.HiddenInspection { - - - public partial class HiddenRectificationList { - +namespace FineUIPro.Web.HSSE.HiddenInspection +{ + + + public partial class HiddenRectificationList + { + /// /// form1 控件。 /// @@ -20,7 +22,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.HtmlControls.HtmlForm form1; - + /// /// PageManager1 控件。 /// @@ -29,7 +31,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.PageManager PageManager1; - + /// /// Panel1 控件。 /// @@ -38,7 +40,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Panel Panel1; - + /// /// Grid1 控件。 /// @@ -47,7 +49,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Grid Grid1; - + /// /// Toolbar1 控件。 /// @@ -56,7 +58,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Toolbar Toolbar1; - + /// /// txtCheckMan 控件。 /// @@ -65,16 +67,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtCheckMan; - - /// - /// txtType 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.TextBox txtType; - + /// /// txtWorkAreaName 控件。 /// @@ -83,7 +76,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtWorkAreaName; - + /// /// txtResponsibilityUnitName 控件。 /// @@ -92,70 +85,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.TextBox txtResponsibilityUnitName; - - /// - /// Toolbar2 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.Toolbar Toolbar2; - - /// - /// txtStartTime 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.DatePicker txtStartTime; - - /// - /// Label3 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.Label Label3; - - /// - /// txtEndTime 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.DatePicker txtEndTime; - - /// - /// txtStartRectificationTime 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.DatePicker txtStartRectificationTime; - - /// - /// Label1 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.Label Label1; - - /// - /// txtEndRectificationTime 控件。 - /// - /// - /// 自动生成的字段。 - /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 - /// - protected global::FineUIPro.DatePicker txtEndRectificationTime; - + /// /// drpStates 控件。 /// @@ -164,7 +94,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList drpStates; - + /// /// dpRiskLevel 控件。 /// @@ -173,7 +103,70 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList dpRiskLevel; - + + /// + /// Toolbar2 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Toolbar Toolbar2; + + /// + /// txtStartTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtStartTime; + + /// + /// Label3 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label Label3; + + /// + /// txtEndTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtEndTime; + + /// + /// txtStartRectificationTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtStartRectificationTime; + + /// + /// Label1 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.Label Label1; + + /// + /// txtEndRectificationTime 控件。 + /// + /// + /// 自动生成的字段。 + /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 + /// + protected global::FineUIPro.DatePicker txtEndRectificationTime; + /// /// ToolbarFill1 控件。 /// @@ -182,7 +175,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarFill ToolbarFill1; - + /// /// hdRemark 控件。 /// @@ -191,7 +184,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.HiddenField hdRemark; - + /// /// btnNew 控件。 /// @@ -200,7 +193,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnNew; - + /// /// btnOut 控件。 /// @@ -209,7 +202,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Button btnOut; - + /// /// lblPageIndex 控件。 /// @@ -218,7 +211,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.WebControls.Label lblPageIndex; - + /// /// lbImageUrl 控件。 /// @@ -227,7 +220,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.WebControls.Label lbImageUrl; - + /// /// Label2 控件。 /// @@ -236,7 +229,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::System.Web.UI.WebControls.Label Label2; - + /// /// ToolbarSeparator1 控件。 /// @@ -245,7 +238,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1; - + /// /// ToolbarText1 控件。 /// @@ -254,7 +247,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.ToolbarText ToolbarText1; - + /// /// ddlPageSize 控件。 /// @@ -263,7 +256,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.DropDownList ddlPageSize; - + /// /// Window1 控件。 /// @@ -272,7 +265,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window1; - + /// /// Window2 控件。 /// @@ -281,7 +274,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window2; - + /// /// Window3 控件。 /// @@ -290,7 +283,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Window Window3; - + /// /// Menu1 控件。 /// @@ -299,7 +292,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.Menu Menu1; - + /// /// btnModify 控件。 /// @@ -308,7 +301,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.MenuButton btnModify; - + /// /// btnRectify 控件。 /// @@ -317,7 +310,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.MenuButton btnRectify; - + /// /// btnConfirm 控件。 /// @@ -326,7 +319,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.MenuButton btnConfirm; - + /// /// btnMenuSee 控件。 /// @@ -335,7 +328,7 @@ namespace FineUIPro.Web.HSSE.HiddenInspection { /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。 /// protected global::FineUIPro.MenuButton btnMenuSee; - + /// /// btnMenuDelete 控件。 /// diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index a96eecbf..e0efe2e3 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -424423,6 +424423,8 @@ namespace Model private string _StatesStr; + private string _ConfirmStr; + private string _RegisterTypesId; private string _RegisterTypesName; @@ -425195,6 +425197,22 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ConfirmStr", DbType="VarChar(6) NOT NULL", CanBeNull=false)] + public string ConfirmStr + { + get + { + return this._ConfirmStr; + } + set + { + if ((this._ConfirmStr != value)) + { + this._ConfirmStr = value; + } + } + } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RegisterTypesId", DbType="NVarChar(50)")] public string RegisterTypesId {