This commit is contained in:
夏菊 2025-06-04 15:26:39 +08:00
parent 2a5cd03fb9
commit d3da07c131
9 changed files with 756 additions and 65 deletions

View File

@ -43,8 +43,8 @@ CREATE TABLE [dbo].[HSSE_TowerCraneRecord](
GO
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex], [SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed], [MenuEnName]) VALUES
(N'9DE9B74A-0823-4857-8B50-2DAA5E635EC4', N'Ëþµõ', NULL, N'HSSE/TowerCrane/TowerCrane.aspx', '70', N'28C8EDB9-F1C2-4287-8013-28A976B093E2', N'Menu_HSSE', '1', '1', '1', NULL);
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex], [SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed]) VALUES
(N'9DE9B74A-0823-4857-8B50-2DAA5E635EC4', N'Ëþµõ', NULL, N'HSSE/TowerCrane/TowerCrane.aspx', '70', N'28C8EDB9-F1C2-4287-8013-28A976B093E2', N'Menu_HSSE', '1', '1', '1');
INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName], [SortIndex]) VALUES (N'DB9951FE-07B7-406E-9574-9A14C30F267F', N'9DE9B74A-0823-4857-8B50-2DAA5E635EC4', N'ɾ³ý', '3');
@ -54,5 +54,6 @@ INSERT INTO [dbo].[Sys_ButtonToMenu] ([ButtonToMenuId], [MenuId], [ButtonName],
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex], [SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed], [MenuEnName])
VALUES (N'960812BA-ADE3-41C2-AE4A-BF24A58DE4CB', N'Ëþµõ״̬', NULL, N'HSSE/TowerCrane/TowerCraneState.aspx', '120', N'28C8EDB9-F1C2-4287-8013-28A976B093E2', N'Menu_HSSE', '1', '1', '1', NULL);
INSERT INTO [dbo].[Sys_Menu] ([MenuId], [MenuName], [Icon], [Url], [SortIndex], [SuperMenu], [MenuType], [IsOffice], [IsEnd], [IsUsed])
VALUES (N'960812BA-ADE3-41C2-AE4A-BF24A58DE4CB', N'Ëþµõ״̬', NULL, N'HSSE/TowerCrane/TowerCraneState.aspx', '120', N'28C8EDB9-F1C2-4287-8013-28A976B093E2', N'Menu_HSSE', '1', '1', '1');

View File

@ -188,7 +188,13 @@ namespace BLL.API.CQMS
inspectionManagement.CheckMan = item.ProcessControl_InspectionManagement.CheckMan;
inspectionManagement.UnqualifiedReason = item.ProcessControl_InspectionManagement.UnqualifiedReason;
inspectionManagement.NoticeCode = item.ProcessControl_InspectionManagement.NoticeCode;
inspectionManagement.AcceptanceCheckMan = item.ProcessControl_InspectionManagement.AcceptanceCheckMan;
var acceptanceCheckMan = BLL.UserService.getUserNamesUserIds(item.ProcessControl_InspectionManagement.AcceptanceCheckMan);
if (string.IsNullOrEmpty(acceptanceCheckMan))
{
acceptanceCheckMan = item.ProcessControl_InspectionManagement.AcceptanceCheckMan.ToString();
}
inspectionManagement.AcceptanceCheckMan = acceptanceCheckMan;
inspectionManagement.ParentDivisionProjectId = item.ProcessControl_InspectionManagement.ParentDivisionProjectId;
inspectionManagement.CompileMan = item.ProcessControl_InspectionManagement.CompileMan;
if (!string.IsNullOrEmpty(inspectionManagement.CompileMan))
@ -232,7 +238,6 @@ namespace BLL.API.CQMS
List<InspectionManagement> list = new List<InspectionManagement>();
foreach (var item in listRes)
{
InspectionManagement inspectionManagement = new InspectionManagement();
inspectionManagement.InspectionId = item.InspectionId;
@ -242,9 +247,6 @@ namespace BLL.API.CQMS
inspectionManagement.UnitName = db.Base_Unit.FirstOrDefault(x => x.UnitId == item.UnitId).UnitName;
inspectionManagement.CNProfessionalId = item.CNProfessionalId;
if (!string.IsNullOrEmpty(inspectionManagement.CNProfessionalId))
{
inspectionManagement.CNProfessionalName = db.Base_CNProfessional.FirstOrDefault(x => x.CNProfessionalId == item.CNProfessionalId).ProfessionalName;
@ -263,10 +265,15 @@ namespace BLL.API.CQMS
inspectionManagement.AttachUrl = item.AttachUrl;
inspectionManagement.CheckDate = item.CheckDate.HasValue ? item.CheckDate.Value.ToString("yyyy-MM-dd") : "";
inspectionManagement.CheckMan = item.CheckMan;
inspectionManagement.CheckMan = item.CheckMan;
inspectionManagement.UnqualifiedReason = item.UnqualifiedReason;
inspectionManagement.NoticeCode = item.NoticeCode;
inspectionManagement.AcceptanceCheckMan = item.AcceptanceCheckMan;
var acceptanceCheckMan = BLL.UserService.getUserNamesUserIds(item.AcceptanceCheckMan);
if (string.IsNullOrEmpty(acceptanceCheckMan))
{
acceptanceCheckMan = item.AcceptanceCheckMan.ToString();
}
inspectionManagement.AcceptanceCheckMan = acceptanceCheckMan;
inspectionManagement.ParentDivisionProjectId = item.ParentDivisionProjectId;
inspectionManagement.CompileMan = item.CompileMan;
if (!string.IsNullOrEmpty(inspectionManagement.CompileMan))
@ -354,10 +361,15 @@ namespace BLL.API.CQMS
inspectionManagement.CheckDate = item.ProcessControl_InspectionManagement.CheckDate.HasValue ? item.ProcessControl_InspectionManagement.CheckDate.Value.ToString("yyyy-MM-dd") : "";
inspectionManagement.CheckMan = item.ProcessControl_InspectionManagement.CheckMan;
inspectionManagement.CheckMan = item.ProcessControl_InspectionManagement.CheckMan;
inspectionManagement.UnqualifiedReason = item.ProcessControl_InspectionManagement.UnqualifiedReason;
inspectionManagement.NoticeCode = item.ProcessControl_InspectionManagement.NoticeCode;
inspectionManagement.AcceptanceCheckMan = item.ProcessControl_InspectionManagement.AcceptanceCheckMan;
var acceptanceCheckMan = BLL.UserService.getUserNamesUserIds(item.ProcessControl_InspectionManagement.AcceptanceCheckMan);
if (string.IsNullOrEmpty(acceptanceCheckMan))
{
acceptanceCheckMan = item.ProcessControl_InspectionManagement.AcceptanceCheckMan.ToString();
}
inspectionManagement.AcceptanceCheckMan = acceptanceCheckMan;
inspectionManagement.ParentDivisionProjectId = item.ProcessControl_InspectionManagement.ParentDivisionProjectId;
inspectionManagement.CompileMan = item.ProcessControl_InspectionManagement.CompileMan;
if (!string.IsNullOrEmpty(inspectionManagement.CompileMan))

View File

@ -873,6 +873,11 @@ namespace BLL
/// </summary>
public const string ActionPlan_SubManagerRuleMenuId = "F734733B-4DB4-4DB7-9A0C-894C876BDB76";
/// <summary>
/// 塔吊
/// </summary>
public const string TowerCraneMenuId = "9DE9B74A-0823-4857-8B50-2DAA5E635EC4";
#region

View File

@ -1,12 +1,10 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ProjectSitePerson.aspx.cs" Inherits="FineUIPro.Web.DataShow.ProjectSitePerson" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link href="~/res/css/common.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>项目当前现场人员</title>
<link href="~/res/css/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
@ -14,12 +12,13 @@
<f:Panel ID="Panel1" runat="server" Margin="5px" BodyPadding="5px" ShowBorder="false"
ShowHeader="true" Layout="VBox" BoxConfigAlign="Stretch">
<Items>
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="项目当前现场人员" EnableCollapse="true"
runat="server" BoxFlex="1" DataKeyNames="PersonId" DataIDField="PersonId" AllowSorting="true" SortField="PersonName" SortDirection="ASC"
OnSort="Grid1_Sort" AllowPaging="true" IsDatabasePaging="true" PageSize="20" EnableColumnLines="true" ForceFit="true"
OnPageIndexChange="Grid1_PageIndexChange" EnableTextSelection="True">
<f:Grid ID="Grid1" ShowBorder="true" ShowHeader="false" Title="项目当前现场人员" EnableCollapse="true"
runat="server" BoxFlex="1" DataKeyNames="PersonId" DataIDField="PersonId" AllowSorting="true" MarginRight="15px"
SortField="PersonName" SortDirection="ASC" OnSort="Grid1_Sort" EnableColumnLines="true" AllowPaging="true"
IsDatabasePaging="true" PageSize="20" OnPageIndexChange="Grid1_PageIndexChange" ForceFit="true"
EnableTextSelection="True">
<Toolbars>
<f:Toolbar ID="Toolbar2" Position="Top" runat="server" ToolbarAlign="Left">
<f:Toolbar ID="Toolbar1" Position="Top" runat="server" ToolbarAlign="Left">
<Items>
<f:CheckBox runat="server" ID="chManager" Label="管理人员" LabelAlign="right" LabelWidth="80px"
AutoPostBack="true" OnCheckedChanged="TextBox_TextChanged">
@ -34,7 +33,7 @@
<f:TemplateField ColumnID="tfNumber" Width="55px" HeaderText="序号" HeaderTextAlign="Center"
TextAlign="Center">
<ItemTemplate>
<asp:Label ID="lblNumber" runat="server" Text='<%# Grid1.PageIndex * Grid1.PageSize + Container.DataItemIndex + 1 %>'></asp:Label>
<asp:Label ID="labNumber" runat="server" Text='<%# Grid1.PageIndex * Grid1.PageSize + Container.DataItemIndex + 1 %>'></asp:Label>
</ItemTemplate>
</f:TemplateField>
<f:RenderField Width="150px" ColumnID="PersonName" DataField="PersonName" FieldType="String" HeaderText="人员名称" TextAlign="Left"
@ -44,9 +43,6 @@
HeaderTextAlign="Center">
</f:RenderField>
</Columns>
<%-- <Listeners>
<f:Listener Event="beforerowcontextmenu" Handler="onRowContextMenu" />
</Listeners>--%>
<PageItems>
<f:ToolbarSeparator ID="ToolbarSeparator1" runat="server">
</f:ToolbarSeparator>
@ -59,19 +55,8 @@
</f:Grid>
</Items>
</f:Panel>
<f:Window ID="Window1" Title="详情" Hidden="true" EnableIFrame="true" EnableMaximize="true"
Target="Parent" EnableResize="false" runat="server" IsModal="true" OnClose="Window1_Close"
Width="1200px" Height="620px" Maximized="true">
</f:Window>
</form>
<script type="text/javascript">
<%-- var menuID = '<%= Menu1.ClientID %>';
// 返回false来阻止浏览器右键菜单
function onRowContextMenu(event, rowId) {
F(menuID).show(); //showAt(event.pageX, event.pageY);
return false;
}--%>
// 点击标题栏工具图标 - 退出
function closeNow(event) {

View File

@ -89,14 +89,11 @@ namespace FineUIPro.Web.DataShow
{
finalQuery = finalQuery.Where(x => x.PostType == Const.PostType_1);
}
var ssss = finalQuery.Count();
DataTable tb = this.GetPagedDataTable(Grid1, finalQuery);
// 2.获取当前分页数据
//var table = this.GetPagedDataTable(Grid1, tb1);
DataTable tb = this.LINQToDataTable(finalQuery);
Grid1.RecordCount = tb.Rows.Count;
var table = this.GetPagedDataTable(Grid1, tb);
//Grid1.RecordCount = finalQuery.Count();
Grid1.DataSource = table;
Grid1.DataBind();
}

View File

@ -51,13 +51,13 @@ namespace FineUIPro.Web.DataShow
protected global::FineUIPro.Grid Grid1;
/// <summary>
/// Toolbar2 控件。
/// Toolbar1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Toolbar Toolbar2;
protected global::FineUIPro.Toolbar Toolbar1;
/// <summary>
/// chManager 控件。
@ -78,13 +78,13 @@ namespace FineUIPro.Web.DataShow
protected global::FineUIPro.Button btnClose;
/// <summary>
/// lblNumber 控件。
/// labNumber 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblNumber;
protected global::System.Web.UI.WebControls.Label labNumber;
/// <summary>
/// ToolbarSeparator1 控件。
@ -112,14 +112,5 @@ namespace FineUIPro.Web.DataShow
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.DropDownList ddlPageSize;
/// <summary>
/// Window1 控件。
/// </summary>
/// <remarks>
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
/// </remarks>
protected global::FineUIPro.Window Window1;
}
}

View File

@ -106,6 +106,8 @@
<TreeNode id="8E2FB782-66B3-46C4-8F71-8A5A37585785" Text="普通机具设备" NavigateUrl=""><TreeNode id="BFD62699-47F0-49FA-AD39-FAEE8A6C3313" Text="资质报审及检验记录" NavigateUrl="HSSE/QualityAudit/GeneralEquipmentQuality.aspx"></TreeNode>
<TreeNode id="CE2687BF-7BBB-4FD5-8FFE-B3B26F712D34" Text="入场验收记录" NavigateUrl="HSSE/License/EquipmentSafetyList.aspx"></TreeNode>
</TreeNode>
<TreeNode id="9DE9B74A-0823-4857-8B50-2DAA5E635EC4" Text="塔吊" NavigateUrl="HSSE/TowerCrane/TowerCrane.aspx"></TreeNode>
<TreeNode id="960812BA-ADE3-41C2-AE4A-BF24A58DE4CB" Text="塔吊状态" NavigateUrl="HSSE/TowerCrane/TowerCraneState.aspx"></TreeNode>
</TreeNode>
<TreeNode id="012DF857-AD6B-49AA-87A8-030CD5F66D4C" Text="HSE奖惩" NavigateUrl=""><TreeNode id="96F21A83-6871-4CC4-8901-1B99C376395C" Text="奖励通知单" NavigateUrl="HSSE/Check/IncentiveNotice.aspx"></TreeNode>
<TreeNode id="C13F1CE7-DAEF-4604-A13F-192621D28DF5" Text="奖励统计" NavigateUrl="HSSE/Check/IncentiveNoticeStatistics.aspx"></TreeNode>

View File

@ -1148,6 +1148,12 @@ namespace Model
partial void InsertHSSE_Hazard_HazardRegisterTypes(HSSE_Hazard_HazardRegisterTypes instance);
partial void UpdateHSSE_Hazard_HazardRegisterTypes(HSSE_Hazard_HazardRegisterTypes instance);
partial void DeleteHSSE_Hazard_HazardRegisterTypes(HSSE_Hazard_HazardRegisterTypes instance);
partial void InsertHSSE_TowerCrane(HSSE_TowerCrane instance);
partial void UpdateHSSE_TowerCrane(HSSE_TowerCrane instance);
partial void DeleteHSSE_TowerCrane(HSSE_TowerCrane instance);
partial void InsertHSSE_TowerCraneRecord(HSSE_TowerCraneRecord instance);
partial void UpdateHSSE_TowerCraneRecord(HSSE_TowerCraneRecord instance);
partial void DeleteHSSE_TowerCraneRecord(HSSE_TowerCraneRecord instance);
partial void InsertHSSE_Weather(HSSE_Weather instance);
partial void UpdateHSSE_Weather(HSSE_Weather instance);
partial void DeleteHSSE_Weather(HSSE_Weather instance);
@ -5810,6 +5816,22 @@ namespace Model
}
}
public System.Data.Linq.Table<HSSE_TowerCrane> HSSE_TowerCrane
{
get
{
return this.GetTable<HSSE_TowerCrane>();
}
}
public System.Data.Linq.Table<HSSE_TowerCraneRecord> HSSE_TowerCraneRecord
{
get
{
return this.GetTable<HSSE_TowerCraneRecord>();
}
}
public System.Data.Linq.Table<HSSE_Weather> HSSE_Weather
{
get
@ -182204,6 +182226,682 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.HSSE_TowerCrane")]
public partial class HSSE_TowerCrane : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _TowerCraneId;
private string _ProjectId;
private string _TowerCraneName;
private string _TowerCraneCode;
private System.Nullable<double> _MaxHoist;
private System.Nullable<double> _MaxMoment;
private System.Nullable<double> _FrontArmLength;
private System.Nullable<double> _BackArmLength;
private string _TowerCap;
private System.Nullable<double> _ArmHeigh;
private string _Remark;
private System.Nullable<System.DateTime> _CreateDate;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnTowerCraneIdChanging(string value);
partial void OnTowerCraneIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnTowerCraneNameChanging(string value);
partial void OnTowerCraneNameChanged();
partial void OnTowerCraneCodeChanging(string value);
partial void OnTowerCraneCodeChanged();
partial void OnMaxHoistChanging(System.Nullable<double> value);
partial void OnMaxHoistChanged();
partial void OnMaxMomentChanging(System.Nullable<double> value);
partial void OnMaxMomentChanged();
partial void OnFrontArmLengthChanging(System.Nullable<double> value);
partial void OnFrontArmLengthChanged();
partial void OnBackArmLengthChanging(System.Nullable<double> value);
partial void OnBackArmLengthChanged();
partial void OnTowerCapChanging(string value);
partial void OnTowerCapChanged();
partial void OnArmHeighChanging(System.Nullable<double> value);
partial void OnArmHeighChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnCreateDateChanging(System.Nullable<System.DateTime> value);
partial void OnCreateDateChanged();
#endregion
public HSSE_TowerCrane()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TowerCraneId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string TowerCraneId
{
get
{
return this._TowerCraneId;
}
set
{
if ((this._TowerCraneId != value))
{
this.OnTowerCraneIdChanging(value);
this.SendPropertyChanging();
this._TowerCraneId = value;
this.SendPropertyChanged("TowerCraneId");
this.OnTowerCraneIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this.OnProjectIdChanging(value);
this.SendPropertyChanging();
this._ProjectId = value;
this.SendPropertyChanged("ProjectId");
this.OnProjectIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TowerCraneName", DbType="NVarChar(50)")]
public string TowerCraneName
{
get
{
return this._TowerCraneName;
}
set
{
if ((this._TowerCraneName != value))
{
this.OnTowerCraneNameChanging(value);
this.SendPropertyChanging();
this._TowerCraneName = value;
this.SendPropertyChanged("TowerCraneName");
this.OnTowerCraneNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TowerCraneCode", DbType="NVarChar(50)")]
public string TowerCraneCode
{
get
{
return this._TowerCraneCode;
}
set
{
if ((this._TowerCraneCode != value))
{
this.OnTowerCraneCodeChanging(value);
this.SendPropertyChanging();
this._TowerCraneCode = value;
this.SendPropertyChanged("TowerCraneCode");
this.OnTowerCraneCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaxHoist", DbType="Float")]
public System.Nullable<double> MaxHoist
{
get
{
return this._MaxHoist;
}
set
{
if ((this._MaxHoist != value))
{
this.OnMaxHoistChanging(value);
this.SendPropertyChanging();
this._MaxHoist = value;
this.SendPropertyChanged("MaxHoist");
this.OnMaxHoistChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaxMoment", DbType="Float")]
public System.Nullable<double> MaxMoment
{
get
{
return this._MaxMoment;
}
set
{
if ((this._MaxMoment != value))
{
this.OnMaxMomentChanging(value);
this.SendPropertyChanging();
this._MaxMoment = value;
this.SendPropertyChanged("MaxMoment");
this.OnMaxMomentChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FrontArmLength", DbType="Float")]
public System.Nullable<double> FrontArmLength
{
get
{
return this._FrontArmLength;
}
set
{
if ((this._FrontArmLength != value))
{
this.OnFrontArmLengthChanging(value);
this.SendPropertyChanging();
this._FrontArmLength = value;
this.SendPropertyChanged("FrontArmLength");
this.OnFrontArmLengthChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BackArmLength", DbType="Float")]
public System.Nullable<double> BackArmLength
{
get
{
return this._BackArmLength;
}
set
{
if ((this._BackArmLength != value))
{
this.OnBackArmLengthChanging(value);
this.SendPropertyChanging();
this._BackArmLength = value;
this.SendPropertyChanged("BackArmLength");
this.OnBackArmLengthChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TowerCap", DbType="NVarChar(2)")]
public string TowerCap
{
get
{
return this._TowerCap;
}
set
{
if ((this._TowerCap != value))
{
this.OnTowerCapChanging(value);
this.SendPropertyChanging();
this._TowerCap = value;
this.SendPropertyChanged("TowerCap");
this.OnTowerCapChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ArmHeigh", DbType="Float")]
public System.Nullable<double> ArmHeigh
{
get
{
return this._ArmHeigh;
}
set
{
if ((this._ArmHeigh != value))
{
this.OnArmHeighChanging(value);
this.SendPropertyChanging();
this._ArmHeigh = value;
this.SendPropertyChanged("ArmHeigh");
this.OnArmHeighChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(50)")]
public string Remark
{
get
{
return this._Remark;
}
set
{
if ((this._Remark != value))
{
this.OnRemarkChanging(value);
this.SendPropertyChanging();
this._Remark = value;
this.SendPropertyChanged("Remark");
this.OnRemarkChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateDate", DbType="DateTime")]
public System.Nullable<System.DateTime> CreateDate
{
get
{
return this._CreateDate;
}
set
{
if ((this._CreateDate != value))
{
this.OnCreateDateChanging(value);
this.SendPropertyChanging();
this._CreateDate = value;
this.SendPropertyChanged("CreateDate");
this.OnCreateDateChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.HSSE_TowerCraneRecord")]
public partial class HSSE_TowerCraneRecord : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _TowerCraneRecordId;
private string _AlarmType;
private System.Nullable<double> _AmountHoist;
private System.Nullable<double> _Camber;
private System.Nullable<double> _Height;
private System.Nullable<double> _Hoist;
private System.Nullable<double> _Moment;
private System.Nullable<double> _Range;
private System.Nullable<double> _RotationAngle;
private System.Nullable<double> _WindSpeed;
private System.Nullable<System.DateTime> _Date;
private string _TowerCraneId;
private string _Remark;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnTowerCraneRecordIdChanging(string value);
partial void OnTowerCraneRecordIdChanged();
partial void OnAlarmTypeChanging(string value);
partial void OnAlarmTypeChanged();
partial void OnAmountHoistChanging(System.Nullable<double> value);
partial void OnAmountHoistChanged();
partial void OnCamberChanging(System.Nullable<double> value);
partial void OnCamberChanged();
partial void OnHeightChanging(System.Nullable<double> value);
partial void OnHeightChanged();
partial void OnHoistChanging(System.Nullable<double> value);
partial void OnHoistChanged();
partial void OnMomentChanging(System.Nullable<double> value);
partial void OnMomentChanged();
partial void OnRangeChanging(System.Nullable<double> value);
partial void OnRangeChanged();
partial void OnRotationAngleChanging(System.Nullable<double> value);
partial void OnRotationAngleChanged();
partial void OnWindSpeedChanging(System.Nullable<double> value);
partial void OnWindSpeedChanged();
partial void OnDateChanging(System.Nullable<System.DateTime> value);
partial void OnDateChanged();
partial void OnTowerCraneIdChanging(string value);
partial void OnTowerCraneIdChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
#endregion
public HSSE_TowerCraneRecord()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TowerCraneRecordId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string TowerCraneRecordId
{
get
{
return this._TowerCraneRecordId;
}
set
{
if ((this._TowerCraneRecordId != value))
{
this.OnTowerCraneRecordIdChanging(value);
this.SendPropertyChanging();
this._TowerCraneRecordId = value;
this.SendPropertyChanged("TowerCraneRecordId");
this.OnTowerCraneRecordIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AlarmType", DbType="NVarChar(50)")]
public string AlarmType
{
get
{
return this._AlarmType;
}
set
{
if ((this._AlarmType != value))
{
this.OnAlarmTypeChanging(value);
this.SendPropertyChanging();
this._AlarmType = value;
this.SendPropertyChanged("AlarmType");
this.OnAlarmTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AmountHoist", DbType="Float")]
public System.Nullable<double> AmountHoist
{
get
{
return this._AmountHoist;
}
set
{
if ((this._AmountHoist != value))
{
this.OnAmountHoistChanging(value);
this.SendPropertyChanging();
this._AmountHoist = value;
this.SendPropertyChanged("AmountHoist");
this.OnAmountHoistChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Camber", DbType="Float")]
public System.Nullable<double> Camber
{
get
{
return this._Camber;
}
set
{
if ((this._Camber != value))
{
this.OnCamberChanging(value);
this.SendPropertyChanging();
this._Camber = value;
this.SendPropertyChanged("Camber");
this.OnCamberChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Height", DbType="Float")]
public System.Nullable<double> Height
{
get
{
return this._Height;
}
set
{
if ((this._Height != value))
{
this.OnHeightChanging(value);
this.SendPropertyChanging();
this._Height = value;
this.SendPropertyChanged("Height");
this.OnHeightChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Hoist", DbType="Float")]
public System.Nullable<double> Hoist
{
get
{
return this._Hoist;
}
set
{
if ((this._Hoist != value))
{
this.OnHoistChanging(value);
this.SendPropertyChanging();
this._Hoist = value;
this.SendPropertyChanged("Hoist");
this.OnHoistChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Moment", DbType="Float")]
public System.Nullable<double> Moment
{
get
{
return this._Moment;
}
set
{
if ((this._Moment != value))
{
this.OnMomentChanging(value);
this.SendPropertyChanging();
this._Moment = value;
this.SendPropertyChanged("Moment");
this.OnMomentChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Range", DbType="Float")]
public System.Nullable<double> Range
{
get
{
return this._Range;
}
set
{
if ((this._Range != value))
{
this.OnRangeChanging(value);
this.SendPropertyChanging();
this._Range = value;
this.SendPropertyChanged("Range");
this.OnRangeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RotationAngle", DbType="Float")]
public System.Nullable<double> RotationAngle
{
get
{
return this._RotationAngle;
}
set
{
if ((this._RotationAngle != value))
{
this.OnRotationAngleChanging(value);
this.SendPropertyChanging();
this._RotationAngle = value;
this.SendPropertyChanged("RotationAngle");
this.OnRotationAngleChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WindSpeed", DbType="Float")]
public System.Nullable<double> WindSpeed
{
get
{
return this._WindSpeed;
}
set
{
if ((this._WindSpeed != value))
{
this.OnWindSpeedChanging(value);
this.SendPropertyChanging();
this._WindSpeed = value;
this.SendPropertyChanged("WindSpeed");
this.OnWindSpeedChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Date", DbType="DateTime")]
public System.Nullable<System.DateTime> Date
{
get
{
return this._Date;
}
set
{
if ((this._Date != value))
{
this.OnDateChanging(value);
this.SendPropertyChanging();
this._Date = value;
this.SendPropertyChanged("Date");
this.OnDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TowerCraneId", DbType="NVarChar(50)")]
public string TowerCraneId
{
get
{
return this._TowerCraneId;
}
set
{
if ((this._TowerCraneId != value))
{
this.OnTowerCraneIdChanging(value);
this.SendPropertyChanging();
this._TowerCraneId = value;
this.SendPropertyChanged("TowerCraneId");
this.OnTowerCraneIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(50)")]
public string Remark
{
get
{
return this._Remark;
}
set
{
if ((this._Remark != value))
{
this.OnRemarkChanging(value);
this.SendPropertyChanging();
this._Remark = value;
this.SendPropertyChanged("Remark");
this.OnRemarkChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.HSSE_Weather")]
public partial class HSSE_Weather : INotifyPropertyChanging, INotifyPropertyChanged
{

View File

@ -6,7 +6,7 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_PublishTargetUrl>G:\发布\五环WebApi</_PublishTargetUrl>
<History>True|2025-05-26T11:19:09.7246357Z||;True|2025-05-26T19:16:39.1283077+08:00||;True|2025-05-26T19:09:24.1561616+08:00||;True|2025-04-07T16:11:44.5172315+08:00||;True|2025-04-02T18:10:22.8695984+08:00||;True|2025-04-02T17:59:51.2978116+08:00||;True|2025-04-02T17:50:55.8630437+08:00||;True|2025-04-02T17:49:22.5114405+08:00||;True|2025-04-02T17:47:11.0650205+08:00||;True|2025-04-02T17:39:09.8576853+08:00||;True|2025-04-02T17:38:15.3079030+08:00||;True|2025-04-02T17:22:03.6735964+08:00||;True|2025-04-02T17:19:04.4220913+08:00||;True|2025-04-02T17:17:14.0244636+08:00||;True|2025-04-02T17:11:09.6583011+08:00||;True|2025-04-02T17:07:23.6330597+08:00||;True|2025-04-02T16:58:45.4070649+08:00||;True|2025-04-02T16:50:20.5907511+08:00||;True|2025-04-02T16:44:18.5351224+08:00||;True|2025-04-02T16:31:11.1297141+08:00||;True|2025-04-02T16:18:43.1126995+08:00||;True|2025-04-02T14:50:42.5384021+08:00||;True|2025-04-01T10:53:08.9403414+08:00||;True|2025-04-01T10:52:08.7646389+08:00||;True|2025-04-01T09:52:56.3095742+08:00||;True|2025-03-13T16:44:25.3220313+08:00||;True|2025-03-13T15:31:10.3223071+08:00||;True|2025-03-13T10:58:17.1401575+08:00||;True|2025-01-23T23:10:37.9664637+08:00||;True|2024-09-24T09:51:10.8028974+08:00||;True|2024-09-20T17:30:59.6144803+08:00||;True|2024-09-20T15:28:40.2547949+08:00||;True|2024-09-19T16:30:51.3047517+08:00||;True|2024-09-19T15:53:23.2431713+08:00||;True|2024-09-19T15:48:55.0571748+08:00||;True|2024-09-19T15:06:29.5748482+08:00||;True|2024-09-19T14:55:42.1477578+08:00||;True|2024-09-19T10:07:53.8666329+08:00||;True|2024-09-03T16:26:17.4985546+08:00||;True|2024-07-17T10:29:15.9472548+08:00||;</History>
<History>True|2025-06-04T03:23:17.3803405Z||;True|2025-06-04T11:04:32.4212196+08:00||;True|2025-05-26T19:19:09.7246357+08:00||;True|2025-05-26T19:16:39.1283077+08:00||;True|2025-05-26T19:09:24.1561616+08:00||;True|2025-04-07T16:11:44.5172315+08:00||;True|2025-04-02T18:10:22.8695984+08:00||;True|2025-04-02T17:59:51.2978116+08:00||;True|2025-04-02T17:50:55.8630437+08:00||;True|2025-04-02T17:49:22.5114405+08:00||;True|2025-04-02T17:47:11.0650205+08:00||;True|2025-04-02T17:39:09.8576853+08:00||;True|2025-04-02T17:38:15.3079030+08:00||;True|2025-04-02T17:22:03.6735964+08:00||;True|2025-04-02T17:19:04.4220913+08:00||;True|2025-04-02T17:17:14.0244636+08:00||;True|2025-04-02T17:11:09.6583011+08:00||;True|2025-04-02T17:07:23.6330597+08:00||;True|2025-04-02T16:58:45.4070649+08:00||;True|2025-04-02T16:50:20.5907511+08:00||;True|2025-04-02T16:44:18.5351224+08:00||;True|2025-04-02T16:31:11.1297141+08:00||;True|2025-04-02T16:18:43.1126995+08:00||;True|2025-04-02T14:50:42.5384021+08:00||;True|2025-04-01T10:53:08.9403414+08:00||;True|2025-04-01T10:52:08.7646389+08:00||;True|2025-04-01T09:52:56.3095742+08:00||;True|2025-03-13T16:44:25.3220313+08:00||;True|2025-03-13T15:31:10.3223071+08:00||;True|2025-03-13T10:58:17.1401575+08:00||;True|2025-01-23T23:10:37.9664637+08:00||;True|2024-09-24T09:51:10.8028974+08:00||;True|2024-09-20T17:30:59.6144803+08:00||;True|2024-09-20T15:28:40.2547949+08:00||;True|2024-09-19T16:30:51.3047517+08:00||;True|2024-09-19T15:53:23.2431713+08:00||;True|2024-09-19T15:48:55.0571748+08:00||;True|2024-09-19T15:06:29.5748482+08:00||;True|2024-09-19T14:55:42.1477578+08:00||;True|2024-09-19T10:07:53.8666329+08:00||;True|2024-09-03T16:26:17.4985546+08:00||;True|2024-07-17T10:29:15.9472548+08:00||;</History>
<LastFailureDetails />
</PropertyGroup>
<ItemGroup>
@ -86,22 +86,22 @@
<publishTime>10/28/2024 14:02:50</publishTime>
</File>
<File Include="bin/App_global.asax.compiled">
<publishTime>05/26/2025 19:19:09</publishTime>
<publishTime>06/04/2025 11:23:15</publishTime>
</File>
<File Include="bin/App_global.asax.dll">
<publishTime>05/26/2025 19:19:09</publishTime>
<publishTime>06/04/2025 11:23:15</publishTime>
</File>
<File Include="bin/Aspose.Words.dll">
<publishTime>12/06/2024 20:13:58</publishTime>
</File>
<File Include="bin/BLL.dll">
<publishTime>05/26/2025 19:19:00</publishTime>
<publishTime>06/04/2025 11:23:05</publishTime>
</File>
<File Include="bin/BLL.dll.config">
<publishTime>12/26/2024 09:46:52</publishTime>
</File>
<File Include="bin/BLL.pdb">
<publishTime>05/26/2025 19:19:00</publishTime>
<publishTime>06/04/2025 11:23:05</publishTime>
</File>
<File Include="bin/BouncyCastle.Crypto.dll">
<publishTime>12/18/2020 05:32:28</publishTime>
@ -128,10 +128,10 @@
<publishTime>07/25/2012 19:48:56</publishTime>
</File>
<File Include="bin/Model.dll">
<publishTime>05/26/2025 16:27:23</publishTime>
<publishTime>06/04/2025 11:04:03</publishTime>
</File>
<File Include="bin/Model.pdb">
<publishTime>05/26/2025 16:27:23</publishTime>
<publishTime>06/04/2025 11:04:03</publishTime>
</File>
<File Include="bin/netstandard.dll">
<publishTime>07/04/2024 14:13:01</publishTime>
@ -389,13 +389,13 @@
<publishTime>02/09/2013 00:42:28</publishTime>
</File>
<File Include="bin/WebAPI.dll">
<publishTime>05/26/2025 19:19:01</publishTime>
<publishTime>06/04/2025 11:23:06</publishTime>
</File>
<File Include="bin/WebAPI.pdb">
<publishTime>05/26/2025 19:19:01</publishTime>
<publishTime>06/04/2025 11:23:06</publishTime>
</File>
<File Include="bin/WebAPI.xml">
<publishTime>05/26/2025 19:19:01</publishTime>
<publishTime>06/04/2025 11:23:06</publishTime>
</File>
<File Include="bin/WebGrease.dll">
<publishTime>01/23/2014 21:57:34</publishTime>
@ -479,7 +479,7 @@
<publishTime>10/28/2024 14:02:50</publishTime>
</File>
<File Include="PrecompiledApp.config">
<publishTime>05/26/2025 19:19:02</publishTime>
<publishTime>06/04/2025 11:23:07</publishTime>
</File>
<File Include="Scripts/bootstrap.js">
<publishTime>10/28/2024 14:02:50</publishTime>