1、系统菜单调整;
2、系统看板UI调整; 3、事故事件功能 4、其他
This commit is contained in:
+414
-5
@@ -47,6 +47,9 @@ namespace Model
|
||||
partial void InsertAccident_NoFourLetoff(Accident_NoFourLetoff instance);
|
||||
partial void UpdateAccident_NoFourLetoff(Accident_NoFourLetoff instance);
|
||||
partial void DeleteAccident_NoFourLetoff(Accident_NoFourLetoff instance);
|
||||
partial void InsertAccident_Warning(Accident_Warning instance);
|
||||
partial void UpdateAccident_Warning(Accident_Warning instance);
|
||||
partial void DeleteAccident_Warning(Accident_Warning instance);
|
||||
partial void InsertActionPlan_ActionPlanList(ActionPlan_ActionPlanList instance);
|
||||
partial void UpdateActionPlan_ActionPlanList(ActionPlan_ActionPlanList instance);
|
||||
partial void DeleteActionPlan_ActionPlanList(ActionPlan_ActionPlanList instance);
|
||||
@@ -2782,6 +2785,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Accident_Warning> Accident_Warning
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Accident_Warning>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<ActionPlan_ActionPlanList> ActionPlan_ActionPlanList
|
||||
{
|
||||
get
|
||||
@@ -15180,6 +15191,332 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Accident_Warning")]
|
||||
public partial class Accident_Warning : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _Id;
|
||||
|
||||
private string _Code;
|
||||
|
||||
private string _Title;
|
||||
|
||||
private string _Content;
|
||||
|
||||
private string _Address;
|
||||
|
||||
private string _ResponsibleUnit;
|
||||
|
||||
private System.DateTime _AccidentDate;
|
||||
|
||||
private string _AccidentMonthDay;
|
||||
|
||||
private System.DateTime _CreateTime;
|
||||
|
||||
private string _CompileMan;
|
||||
|
||||
private string _CompileManName;
|
||||
|
||||
private string _Remarks;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnIdChanging(string value);
|
||||
partial void OnIdChanged();
|
||||
partial void OnCodeChanging(string value);
|
||||
partial void OnCodeChanged();
|
||||
partial void OnTitleChanging(string value);
|
||||
partial void OnTitleChanged();
|
||||
partial void OnContentChanging(string value);
|
||||
partial void OnContentChanged();
|
||||
partial void OnAddressChanging(string value);
|
||||
partial void OnAddressChanged();
|
||||
partial void OnResponsibleUnitChanging(string value);
|
||||
partial void OnResponsibleUnitChanged();
|
||||
partial void OnAccidentDateChanging(System.DateTime value);
|
||||
partial void OnAccidentDateChanged();
|
||||
partial void OnAccidentMonthDayChanging(string value);
|
||||
partial void OnAccidentMonthDayChanged();
|
||||
partial void OnCreateTimeChanging(System.DateTime value);
|
||||
partial void OnCreateTimeChanged();
|
||||
partial void OnCompileManChanging(string value);
|
||||
partial void OnCompileManChanged();
|
||||
partial void OnCompileManNameChanging(string value);
|
||||
partial void OnCompileManNameChanged();
|
||||
partial void OnRemarksChanging(string value);
|
||||
partial void OnRemarksChanged();
|
||||
#endregion
|
||||
|
||||
public Accident_Warning()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string Id
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Id;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Id != value))
|
||||
{
|
||||
this.OnIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Id = value;
|
||||
this.SendPropertyChanged("Id");
|
||||
this.OnIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Code", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string Code
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Code;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Code != value))
|
||||
{
|
||||
this.OnCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Code = value;
|
||||
this.SendPropertyChanged("Code");
|
||||
this.OnCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Title", DbType="NVarChar(100) NOT NULL", CanBeNull=false)]
|
||||
public string Title
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Title;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Title != value))
|
||||
{
|
||||
this.OnTitleChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Title = value;
|
||||
this.SendPropertyChanged("Title");
|
||||
this.OnTitleChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Content", DbType="NVarChar(2000) NOT NULL", CanBeNull=false)]
|
||||
public string Content
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Content;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Content != value))
|
||||
{
|
||||
this.OnContentChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Content = value;
|
||||
this.SendPropertyChanged("Content");
|
||||
this.OnContentChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string Address
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Address;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Address != value))
|
||||
{
|
||||
this.OnAddressChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Address = value;
|
||||
this.SendPropertyChanged("Address");
|
||||
this.OnAddressChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ResponsibleUnit", DbType="NVarChar(200)")]
|
||||
public string ResponsibleUnit
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ResponsibleUnit;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ResponsibleUnit != value))
|
||||
{
|
||||
this.OnResponsibleUnitChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ResponsibleUnit = value;
|
||||
this.SendPropertyChanged("ResponsibleUnit");
|
||||
this.OnResponsibleUnitChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AccidentDate", DbType="DateTime NOT NULL")]
|
||||
public System.DateTime AccidentDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AccidentDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AccidentDate != value))
|
||||
{
|
||||
this.OnAccidentDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AccidentDate = value;
|
||||
this.SendPropertyChanged("AccidentDate");
|
||||
this.OnAccidentDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AccidentMonthDay", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string AccidentMonthDay
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AccidentMonthDay;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AccidentMonthDay != value))
|
||||
{
|
||||
this.OnAccidentMonthDayChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AccidentMonthDay = value;
|
||||
this.SendPropertyChanged("AccidentMonthDay");
|
||||
this.OnAccidentMonthDayChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateTime", DbType="DateTime NOT NULL")]
|
||||
public System.DateTime CreateTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CreateTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CreateTime != value))
|
||||
{
|
||||
this.OnCreateTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CreateTime = value;
|
||||
this.SendPropertyChanged("CreateTime");
|
||||
this.OnCreateTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
|
||||
public string CompileMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileMan != value))
|
||||
{
|
||||
this.OnCompileManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileMan = value;
|
||||
this.SendPropertyChanged("CompileMan");
|
||||
this.OnCompileManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileManName", DbType="NVarChar(50)")]
|
||||
public string CompileManName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileManName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileManName != value))
|
||||
{
|
||||
this.OnCompileManNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileManName = value;
|
||||
this.SendPropertyChanged("CompileManName");
|
||||
this.OnCompileManNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remarks", DbType="NVarChar(200)")]
|
||||
public string Remarks
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Remarks;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Remarks != value))
|
||||
{
|
||||
this.OnRemarksChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Remarks = value;
|
||||
this.SendPropertyChanged("Remarks");
|
||||
this.OnRemarksChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.ActionPlan_ActionPlanList")]
|
||||
public partial class ActionPlan_ActionPlanList : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -42551,6 +42888,8 @@ namespace Model
|
||||
|
||||
private string _DataSource;
|
||||
|
||||
private System.Nullable<bool> _IsThisUnit;
|
||||
|
||||
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
|
||||
|
||||
private EntitySet<Accident_AccidentReport> _Accident_AccidentReport;
|
||||
@@ -42999,6 +43338,8 @@ namespace Model
|
||||
partial void OnOrganizationPicChanged();
|
||||
partial void OnDataSourceChanging(string value);
|
||||
partial void OnDataSourceChanged();
|
||||
partial void OnIsThisUnitChanging(System.Nullable<bool> value);
|
||||
partial void OnIsThisUnitChanged();
|
||||
#endregion
|
||||
|
||||
public Base_Unit()
|
||||
@@ -43741,6 +44082,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsThisUnit", DbType="Bit")]
|
||||
public System.Nullable<bool> IsThisUnit
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsThisUnit;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsThisUnit != value))
|
||||
{
|
||||
this.OnIsThisUnitChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsThisUnit = value;
|
||||
this.SendPropertyChanged("IsThisUnit");
|
||||
this.OnIsThisUnitChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Unit", Storage="_Accident_AccidentHandle", ThisKey="UnitId", OtherKey="UnitId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
|
||||
{
|
||||
@@ -230259,7 +230620,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterFaceName", DbType="NChar(10)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterFaceName", DbType="NVarChar(500)")]
|
||||
public string InterFaceName
|
||||
{
|
||||
get
|
||||
@@ -230299,7 +230660,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterFaceMehtod", DbType="NChar(10)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InterFaceMehtod", DbType="NVarChar(200)")]
|
||||
public string InterFaceMehtod
|
||||
{
|
||||
get
|
||||
@@ -230496,6 +230857,10 @@ namespace Model
|
||||
|
||||
private string _CallBackUrlReqMethod;
|
||||
|
||||
private System.Nullable<bool> _IsSingleRequest;
|
||||
|
||||
private string _RequestJsonBody;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -230530,6 +230895,10 @@ namespace Model
|
||||
partial void OnInterFaceCallBackUrlChanged();
|
||||
partial void OnCallBackUrlReqMethodChanging(string value);
|
||||
partial void OnCallBackUrlReqMethodChanged();
|
||||
partial void OnIsSingleRequestChanging(System.Nullable<bool> value);
|
||||
partial void OnIsSingleRequestChanged();
|
||||
partial void OnRequestJsonBodyChanging(string value);
|
||||
partial void OnRequestJsonBodyChanged();
|
||||
#endregion
|
||||
|
||||
public InterFaceSet()
|
||||
@@ -230837,6 +231206,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSingleRequest", DbType="Bit")]
|
||||
public System.Nullable<bool> IsSingleRequest
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsSingleRequest;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsSingleRequest != value))
|
||||
{
|
||||
this.OnIsSingleRequestChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsSingleRequest = value;
|
||||
this.SendPropertyChanged("IsSingleRequest");
|
||||
this.OnIsSingleRequestChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RequestJsonBody", DbType="NVarChar(2000)")]
|
||||
public string RequestJsonBody
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RequestJsonBody;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RequestJsonBody != value))
|
||||
{
|
||||
this.OnRequestJsonBodyChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RequestJsonBody = value;
|
||||
this.SendPropertyChanged("RequestJsonBody");
|
||||
this.OnRequestJsonBodyChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -230959,7 +231368,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Frequency", DbType="NChar(10)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Frequency", DbType="NVarChar(50)")]
|
||||
public string Frequency
|
||||
{
|
||||
get
|
||||
@@ -324057,7 +324466,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubUnitQualityName", DbType="NVarChar(100)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubUnitQualityName", DbType="NVarChar(500)")]
|
||||
public string SubUnitQualityName
|
||||
{
|
||||
get
|
||||
@@ -454005,7 +454414,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubUnitQualityName", DbType="NVarChar(100)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubUnitQualityName", DbType="NVarChar(500)")]
|
||||
public string SubUnitQualityName
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user