提交代码

This commit is contained in:
2024-09-02 16:26:13 +08:00
parent 256c67cf52
commit 3a3a9a66f5
24 changed files with 2378 additions and 31 deletions
+193
View File
@@ -1187,6 +1187,9 @@ namespace Model
partial void InsertPlan_SubPlanApprove(Plan_SubPlanApprove instance);
partial void UpdatePlan_SubPlanApprove(Plan_SubPlanApprove instance);
partial void DeletePlan_SubPlanApprove(Plan_SubPlanApprove instance);
partial void InsertPlan_TechnicalProposalReview(Plan_TechnicalProposalReview instance);
partial void UpdatePlan_TechnicalProposalReview(Plan_TechnicalProposalReview instance);
partial void DeletePlan_TechnicalProposalReview(Plan_TechnicalProposalReview instance);
partial void InsertProcessControl_InspectionManagement(ProcessControl_InspectionManagement instance);
partial void UpdateProcessControl_InspectionManagement(ProcessControl_InspectionManagement instance);
partial void DeleteProcessControl_InspectionManagement(ProcessControl_InspectionManagement instance);
@@ -4923,6 +4926,14 @@ namespace Model
}
}
public System.Data.Linq.Table<Plan_TechnicalProposalReview> Plan_TechnicalProposalReview
{
get
{
return this.GetTable<Plan_TechnicalProposalReview>();
}
}
public System.Data.Linq.Table<ProcessControl_InspectionManagement> ProcessControl_InspectionManagement
{
get
@@ -191687,6 +191698,188 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Plan_TechnicalProposalReview")]
public partial class Plan_TechnicalProposalReview : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _TechnicalProposalReviewId;
private string _ProjectId;
private string _Code;
private string _Name;
private string _CompileMan;
private System.Nullable<System.DateTime> _CompileDate;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnTechnicalProposalReviewIdChanging(string value);
partial void OnTechnicalProposalReviewIdChanged();
partial void OnProjectIdChanging(string value);
partial void OnProjectIdChanged();
partial void OnCodeChanging(string value);
partial void OnCodeChanged();
partial void OnNameChanging(string value);
partial void OnNameChanged();
partial void OnCompileManChanging(string value);
partial void OnCompileManChanged();
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
partial void OnCompileDateChanged();
#endregion
public Plan_TechnicalProposalReview()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TechnicalProposalReviewId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string TechnicalProposalReviewId
{
get
{
return this._TechnicalProposalReviewId;
}
set
{
if ((this._TechnicalProposalReviewId != value))
{
this.OnTechnicalProposalReviewIdChanging(value);
this.SendPropertyChanging();
this._TechnicalProposalReviewId = value;
this.SendPropertyChanged("TechnicalProposalReviewId");
this.OnTechnicalProposalReviewIdChanged();
}
}
}
[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="_Code", DbType="NVarChar(100)")]
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="_Name", DbType="NVarChar(200)")]
public string Name
{
get
{
return this._Name;
}
set
{
if ((this._Name != value))
{
this.OnNameChanging(value);
this.SendPropertyChanging();
this._Name = value;
this.SendPropertyChanged("Name");
this.OnNameChanged();
}
}
}
[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="_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();
}
}
}
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.ProcessControl_InspectionManagement")]
public partial class ProcessControl_InspectionManagement : INotifyPropertyChanging, INotifyPropertyChanged
{