提交代码

This commit is contained in:
高飞 2024-06-26 09:14:56 +08:00
parent b5ede0cda8
commit d0f94051b7
2 changed files with 315 additions and 194 deletions

View File

@ -12,7 +12,7 @@
<appSettings>
<!--连接字符串-->
<!--<add key="ConnectionString" value="Server=.;Database=SGGLDB_WH;Integrated Security=False;User ID=sa;Password=1111;MultipleActiveResultSets=true;Connect Timeout=1200"/>-->
<add key="ConnectionString" value="Server=.\SQL2012;Database=SGGLDB_WH;Integrated Security=False;User ID=sa;Password=1111;MultipleActiveResultSets=true;Connect Timeout=1200"/>
<add key="ConnectionString" value="Server=.;Database=SGGLDB_WH;Integrated Security=False;User ID=sa;Password=1111;MultipleActiveResultSets=true;Connect Timeout=1200"/>
<!--系统名称-->
<add key="SystemName" value="智慧施工管理信息系统V1.0"/>
<add key="ChartImageHandler" value="storage=file;timeout=20;url=~/Images/;"/>
@ -77,7 +77,7 @@
<add verb="GET" path="res.axd" type="FineUIPro.ResourceHandler, FineUIPro" validate="false"/>
<add path="ChartImg.axd" verb="GET,POST,HEAD" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
</httpHandlers>
<compilation debug="true" targetFramework="4.6.1"/>
<compilation debug="false" targetFramework="4.6.1"/>
<httpRuntime requestValidationMode="2.0" maxRequestLength="2147483647" executionTimeout="36000"/>
<authentication mode="Forms">
<forms loginUrl="Login.aspx" name="PUBLISHERCOOKIE" protection="All" timeout="1440" path="/"/>

View File

@ -2078,6 +2078,9 @@ namespace Model
partial void InsertRun_ScheduleSetUp(Run_ScheduleSetUp instance);
partial void UpdateRun_ScheduleSetUp(Run_ScheduleSetUp instance);
partial void DeleteRun_ScheduleSetUp(Run_ScheduleSetUp instance);
partial void InsertRunning_LogMain(Running_LogMain instance);
partial void UpdateRunning_LogMain(Running_LogMain instance);
partial void DeleteRunning_LogMain(Running_LogMain instance);
partial void InsertRunning_LogManagement(Running_LogManagement instance);
partial void UpdateRunning_LogManagement(Running_LogManagement instance);
partial void DeleteRunning_LogManagement(Running_LogManagement instance);
@ -8185,6 +8188,14 @@ namespace Model
}
}
public System.Data.Linq.Table<Running_LogMain> Running_LogMain
{
get
{
return this.GetTable<Running_LogMain>();
}
}
public System.Data.Linq.Table<Running_LogManagement> Running_LogManagement
{
get
@ -320255,6 +320266,236 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Running_LogMain")]
public partial class Running_LogMain : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _MainId;
private string _ProjectId;
private string _JobNo;
private string _ShiftType;
private System.Nullable<System.DateTime> _StartData;
private System.Nullable<System.DateTime> _EndData;
private string _AddUser;
private System.Nullable<System.DateTime> _AddTime;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnMainIdChanging(string value);
partial void OnMainIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnJobNoChanging(string value);
partial void OnJobNoChanged();
partial void OnShiftTypeChanging(string value);
partial void OnShiftTypeChanged();
partial void OnStartDataChanging(System.Nullable<System.DateTime> value);
partial void OnStartDataChanged();
partial void OnEndDataChanging(System.Nullable<System.DateTime> value);
partial void OnEndDataChanged();
partial void OnAddUserChanging(string value);
partial void OnAddUserChanged();
partial void OnAddTimeChanging(System.Nullable<System.DateTime> value);
partial void OnAddTimeChanged();
#endregion
public Running_LogMain()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainId", DbType="VarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string MainId
{
get
{
return this._MainId;
}
set
{
if ((this._MainId != value))
{
this.OnMainIdChanging(value);
this.SendPropertyChanging();
this._MainId = value;
this.SendPropertyChanged("MainId");
this.OnMainIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="VarChar(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="_JobNo", DbType="VarChar(50)")]
public string JobNo
{
get
{
return this._JobNo;
}
set
{
if ((this._JobNo != value))
{
this.OnJobNoChanging(value);
this.SendPropertyChanging();
this._JobNo = value;
this.SendPropertyChanged("JobNo");
this.OnJobNoChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ShiftType", DbType="VarChar(50)")]
public string ShiftType
{
get
{
return this._ShiftType;
}
set
{
if ((this._ShiftType != value))
{
this.OnShiftTypeChanging(value);
this.SendPropertyChanging();
this._ShiftType = value;
this.SendPropertyChanged("ShiftType");
this.OnShiftTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StartData", DbType="DateTime")]
public System.Nullable<System.DateTime> StartData
{
get
{
return this._StartData;
}
set
{
if ((this._StartData != value))
{
this.OnStartDataChanging(value);
this.SendPropertyChanging();
this._StartData = value;
this.SendPropertyChanged("StartData");
this.OnStartDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EndData", DbType="DateTime")]
public System.Nullable<System.DateTime> EndData
{
get
{
return this._EndData;
}
set
{
if ((this._EndData != value))
{
this.OnEndDataChanging(value);
this.SendPropertyChanging();
this._EndData = value;
this.SendPropertyChanged("EndData");
this.OnEndDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddUser", DbType="VarChar(50)")]
public string AddUser
{
get
{
return this._AddUser;
}
set
{
if ((this._AddUser != value))
{
this.OnAddUserChanging(value);
this.SendPropertyChanging();
this._AddUser = value;
this.SendPropertyChanged("AddUser");
this.OnAddUserChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AddTime", DbType="DateTime")]
public System.Nullable<System.DateTime> AddTime
{
get
{
return this._AddTime;
}
set
{
if ((this._AddTime != value))
{
this.OnAddTimeChanging(value);
this.SendPropertyChanging();
this._AddTime = value;
this.SendPropertyChanged("AddTime");
this.OnAddTimeChanged();
}
}
}
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.Running_LogManagement")]
public partial class Running_LogManagement : INotifyPropertyChanging, INotifyPropertyChanged
{
@ -320295,6 +320536,8 @@ namespace Model
private System.Nullable<int> _Sort;
private string _MainId;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -320333,6 +320576,8 @@ namespace Model
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
partial void OnMainIdChanging(string value);
partial void OnMainIdChanged();
#endregion
public Running_LogManagement()
@ -320680,6 +320925,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainId", DbType="VarChar(50)")]
public string MainId
{
get
{
return this._MainId;
}
set
{
if ((this._MainId != value))
{
this.OnMainIdChanging(value);
this.SendPropertyChanging();
this._MainId = value;
this.SendPropertyChanged("MainId");
this.OnMainIdChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@ -320709,16 +320974,8 @@ namespace Model
private string _MaintenanceId;
private string _RunningId;
private string _ProjectId;
private string _InstallationId;
private string _ProcessesId;
private string _SystemId;
private string _MaintenanceReason;
private string _MaintenanceHandle;
@ -320729,22 +320986,16 @@ namespace Model
private System.Nullable<int> _Sort;
private string _MainId;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnMaintenanceIdChanging(string value);
partial void OnMaintenanceIdChanged();
partial void OnRunningIdChanging(string value);
partial void OnRunningIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnInstallationIdChanging(string value);
partial void OnInstallationIdChanged();
partial void OnProcessesIdChanging(string value);
partial void OnProcessesIdChanged();
partial void OnSystemIdChanging(string value);
partial void OnSystemIdChanged();
partial void OnMaintenanceReasonChanging(string value);
partial void OnMaintenanceReasonChanged();
partial void OnMaintenanceHandleChanging(string value);
@ -320755,6 +321006,8 @@ namespace Model
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
partial void OnMainIdChanging(string value);
partial void OnMainIdChanged();
#endregion
public Running_Maintenance()
@ -320782,26 +321035,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RunningId", DbType="VarChar(50)")]
public string RunningId
{
get
{
return this._RunningId;
}
set
{
if ((this._RunningId != value))
{
this.OnRunningIdChanging(value);
this.SendPropertyChanging();
this._RunningId = value;
this.SendPropertyChanged("RunningId");
this.OnRunningIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="VarChar(50)")]
public string ProjectId
{
@ -320822,66 +321055,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstallationId", DbType="VarChar(50)")]
public string InstallationId
{
get
{
return this._InstallationId;
}
set
{
if ((this._InstallationId != value))
{
this.OnInstallationIdChanging(value);
this.SendPropertyChanging();
this._InstallationId = value;
this.SendPropertyChanged("InstallationId");
this.OnInstallationIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProcessesId", DbType="VarChar(50)")]
public string ProcessesId
{
get
{
return this._ProcessesId;
}
set
{
if ((this._ProcessesId != value))
{
this.OnProcessesIdChanging(value);
this.SendPropertyChanging();
this._ProcessesId = value;
this.SendPropertyChanged("ProcessesId");
this.OnProcessesIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SystemId", DbType="VarChar(50)")]
public string SystemId
{
get
{
return this._SystemId;
}
set
{
if ((this._SystemId != value))
{
this.OnSystemIdChanging(value);
this.SendPropertyChanging();
this._SystemId = value;
this.SendPropertyChanged("SystemId");
this.OnSystemIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaintenanceReason", DbType="VarChar(1000)")]
public string MaintenanceReason
{
@ -320982,6 +321155,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainId", DbType="VarChar(50)")]
public string MainId
{
get
{
return this._MainId;
}
set
{
if ((this._MainId != value))
{
this.OnMainIdChanging(value);
this.SendPropertyChanging();
this._MainId = value;
this.SendPropertyChanged("MainId");
this.OnMainIdChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@ -321011,16 +321204,8 @@ namespace Model
private string _OperationId;
private string _RunningId;
private string _ProjectId;
private string _InstallationId;
private string _ProcessesId;
private string _SystemId;
private string _OperationReason;
private string _OperationHandle;
@ -321031,22 +321216,16 @@ namespace Model
private System.Nullable<int> _Sort;
private string _MainId;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnOperationIdChanging(string value);
partial void OnOperationIdChanged();
partial void OnRunningIdChanging(string value);
partial void OnRunningIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnInstallationIdChanging(string value);
partial void OnInstallationIdChanged();
partial void OnProcessesIdChanging(string value);
partial void OnProcessesIdChanged();
partial void OnSystemIdChanging(string value);
partial void OnSystemIdChanged();
partial void OnOperationReasonChanging(string value);
partial void OnOperationReasonChanged();
partial void OnOperationHandleChanging(string value);
@ -321057,6 +321236,8 @@ namespace Model
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
partial void OnMainIdChanging(string value);
partial void OnMainIdChanged();
#endregion
public Running_Operation()
@ -321084,26 +321265,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RunningId", DbType="VarChar(50)")]
public string RunningId
{
get
{
return this._RunningId;
}
set
{
if ((this._RunningId != value))
{
this.OnRunningIdChanging(value);
this.SendPropertyChanging();
this._RunningId = value;
this.SendPropertyChanged("RunningId");
this.OnRunningIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="VarChar(50)")]
public string ProjectId
{
@ -321124,66 +321285,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InstallationId", DbType="VarChar(50)")]
public string InstallationId
{
get
{
return this._InstallationId;
}
set
{
if ((this._InstallationId != value))
{
this.OnInstallationIdChanging(value);
this.SendPropertyChanging();
this._InstallationId = value;
this.SendPropertyChanged("InstallationId");
this.OnInstallationIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProcessesId", DbType="VarChar(50)")]
public string ProcessesId
{
get
{
return this._ProcessesId;
}
set
{
if ((this._ProcessesId != value))
{
this.OnProcessesIdChanging(value);
this.SendPropertyChanging();
this._ProcessesId = value;
this.SendPropertyChanged("ProcessesId");
this.OnProcessesIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SystemId", DbType="VarChar(50)")]
public string SystemId
{
get
{
return this._SystemId;
}
set
{
if ((this._SystemId != value))
{
this.OnSystemIdChanging(value);
this.SendPropertyChanging();
this._SystemId = value;
this.SendPropertyChanged("SystemId");
this.OnSystemIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OperationReason", DbType="VarChar(1000)")]
public string OperationReason
{
@ -321284,6 +321385,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainId", DbType="VarChar(50)")]
public string MainId
{
get
{
return this._MainId;
}
set
{
if ((this._MainId != value))
{
this.OnMainIdChanging(value);
this.SendPropertyChanging();
this._MainId = value;
this.SendPropertyChanged("MainId");
this.OnMainIdChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;