增加项目使用情况汇总

This commit is contained in:
2023-09-01 08:53:55 +08:00
parent 79c5a301c5
commit cfd069933e
11 changed files with 2239 additions and 2 deletions
+386
View File
@@ -1202,6 +1202,12 @@ namespace Model
partial void InsertInformationProject_WorkSummaryReport(InformationProject_WorkSummaryReport instance);
partial void UpdateInformationProject_WorkSummaryReport(InformationProject_WorkSummaryReport instance);
partial void DeleteInformationProject_WorkSummaryReport(InformationProject_WorkSummaryReport instance);
partial void InsertInspection_Summary(Inspection_Summary instance);
partial void UpdateInspection_Summary(Inspection_Summary instance);
partial void DeleteInspection_Summary(Inspection_Summary instance);
partial void InsertInspection_SummaryMb(Inspection_SummaryMb instance);
partial void UpdateInspection_SummaryMb(Inspection_SummaryMb instance);
partial void DeleteInspection_SummaryMb(Inspection_SummaryMb instance);
partial void InsertInterFaceLog(InterFaceLog instance);
partial void UpdateInterFaceLog(InterFaceLog instance);
partial void DeleteInterFaceLog(InterFaceLog instance);
@@ -5549,6 +5555,22 @@ namespace Model
}
}
public System.Data.Linq.Table<Inspection_Summary> Inspection_Summary
{
get
{
return this.GetTable<Inspection_Summary>();
}
}
public System.Data.Linq.Table<Inspection_SummaryMb> Inspection_SummaryMb
{
get
{
return this.GetTable<Inspection_SummaryMb>();
}
}
public System.Data.Linq.Table<InterFaceLog> InterFaceLog
{
get
@@ -197668,6 +197690,370 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Inspection_Summary")]
public partial class Inspection_Summary : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _InspectionSummaryId;
private string _InspectionSummaryMbId;
private string _ProjectId;
private string _SummeryResult;
private System.Nullable<System.DateTime> _CompileDate;
private string _CompileDateMonth;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnInspectionSummaryIdChanging(string value);
partial void OnInspectionSummaryIdChanged();
partial void OnInspectionSummaryMbIdChanging(string value);
partial void OnInspectionSummaryMbIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnSummeryResultChanging(string value);
partial void OnSummeryResultChanged();
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
partial void OnCompileDateChanged();
partial void OnCompileDateMonthChanging(string value);
partial void OnCompileDateMonthChanged();
#endregion
public Inspection_Summary()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionSummaryId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string InspectionSummaryId
{
get
{
return this._InspectionSummaryId;
}
set
{
if ((this._InspectionSummaryId != value))
{
this.OnInspectionSummaryIdChanging(value);
this.SendPropertyChanging();
this._InspectionSummaryId = value;
this.SendPropertyChanged("InspectionSummaryId");
this.OnInspectionSummaryIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionSummaryMbId", DbType="NVarChar(50)")]
public string InspectionSummaryMbId
{
get
{
return this._InspectionSummaryMbId;
}
set
{
if ((this._InspectionSummaryMbId != value))
{
this.OnInspectionSummaryMbIdChanging(value);
this.SendPropertyChanging();
this._InspectionSummaryMbId = value;
this.SendPropertyChanged("InspectionSummaryMbId");
this.OnInspectionSummaryMbIdChanged();
}
}
}
[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="_SummeryResult", DbType="NVarChar(50)")]
public string SummeryResult
{
get
{
return this._SummeryResult;
}
set
{
if ((this._SummeryResult != value))
{
this.OnSummeryResultChanging(value);
this.SendPropertyChanging();
this._SummeryResult = value;
this.SendPropertyChanged("SummeryResult");
this.OnSummeryResultChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileDate", DbType="DateTime")]
public System.Nullable<System.DateTime> CompileDate
{
get
{
return this._CompileDate;
}
set
{
if ((this._CompileDate != value))
{
this.OnCompileDateChanging(value);
this.SendPropertyChanging();
this._CompileDate = value;
this.SendPropertyChanged("CompileDate");
this.OnCompileDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileDateMonth", DbType="NVarChar(50)")]
public string CompileDateMonth
{
get
{
return this._CompileDateMonth;
}
set
{
if ((this._CompileDateMonth != value))
{
this.OnCompileDateMonthChanging(value);
this.SendPropertyChanging();
this._CompileDateMonth = value;
this.SendPropertyChanged("CompileDateMonth");
this.OnCompileDateMonthChanged();
}
}
}
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.Inspection_SummaryMb")]
public partial class Inspection_SummaryMb : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _InspectionSummaryMbId;
private string _SNumber;
private string _ModuleName;
private string _MenuP;
private string _MenuC;
private System.Nullable<int> _SortId;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnInspectionSummaryMbIdChanging(string value);
partial void OnInspectionSummaryMbIdChanged();
partial void OnSNumberChanging(string value);
partial void OnSNumberChanged();
partial void OnModuleNameChanging(string value);
partial void OnModuleNameChanged();
partial void OnMenuPChanging(string value);
partial void OnMenuPChanged();
partial void OnMenuCChanging(string value);
partial void OnMenuCChanged();
partial void OnSortIdChanging(System.Nullable<int> value);
partial void OnSortIdChanged();
#endregion
public Inspection_SummaryMb()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectionSummaryMbId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string InspectionSummaryMbId
{
get
{
return this._InspectionSummaryMbId;
}
set
{
if ((this._InspectionSummaryMbId != value))
{
this.OnInspectionSummaryMbIdChanging(value);
this.SendPropertyChanging();
this._InspectionSummaryMbId = value;
this.SendPropertyChanged("InspectionSummaryMbId");
this.OnInspectionSummaryMbIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SNumber", DbType="NVarChar(50)")]
public string SNumber
{
get
{
return this._SNumber;
}
set
{
if ((this._SNumber != value))
{
this.OnSNumberChanging(value);
this.SendPropertyChanging();
this._SNumber = value;
this.SendPropertyChanged("SNumber");
this.OnSNumberChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ModuleName", DbType="NVarChar(50)")]
public string ModuleName
{
get
{
return this._ModuleName;
}
set
{
if ((this._ModuleName != value))
{
this.OnModuleNameChanging(value);
this.SendPropertyChanging();
this._ModuleName = value;
this.SendPropertyChanged("ModuleName");
this.OnModuleNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MenuP", DbType="NVarChar(50)")]
public string MenuP
{
get
{
return this._MenuP;
}
set
{
if ((this._MenuP != value))
{
this.OnMenuPChanging(value);
this.SendPropertyChanging();
this._MenuP = value;
this.SendPropertyChanged("MenuP");
this.OnMenuPChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MenuC", DbType="NVarChar(50)")]
public string MenuC
{
get
{
return this._MenuC;
}
set
{
if ((this._MenuC != value))
{
this.OnMenuCChanging(value);
this.SendPropertyChanging();
this._MenuC = value;
this.SendPropertyChanged("MenuC");
this.OnMenuCChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortId", DbType="Int")]
public System.Nullable<int> SortId
{
get
{
return this._SortId;
}
set
{
if ((this._SortId != value))
{
this.OnSortIdChanging(value);
this.SendPropertyChanging();
this._SortId = value;
this.SendPropertyChanged("SortId");
this.OnSortIdChanged();
}
}
}
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.InterFaceLog")]
public partial class InterFaceLog : INotifyPropertyChanging, INotifyPropertyChanged
{