现场质量问题台账
This commit is contained in:
@@ -100851,6 +100851,10 @@ namespace Model
|
||||
|
||||
private string _ReasonAnalysis;
|
||||
|
||||
private string _Source;
|
||||
|
||||
private string _ProgressStatus;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
|
||||
private EntityRef<Base_CNProfessional> _Base_CNProfessional;
|
||||
@@ -100907,6 +100911,10 @@ namespace Model
|
||||
partial void OnSupervisorChanged();
|
||||
partial void OnReasonAnalysisChanging(string value);
|
||||
partial void OnReasonAnalysisChanged();
|
||||
partial void OnSourceChanging(string value);
|
||||
partial void OnSourceChanged();
|
||||
partial void OnProgressStatusChanging(string value);
|
||||
partial void OnProgressStatusChanged();
|
||||
#endregion
|
||||
|
||||
public Comprehensive_NCRManagement()
|
||||
@@ -101374,6 +101382,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Source", DbType="NVarChar(100)")]
|
||||
public string Source
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Source;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Source != value))
|
||||
{
|
||||
this.OnSourceChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Source = value;
|
||||
this.SendPropertyChanged("Source");
|
||||
this.OnSourceChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProgressStatus", DbType="NVarChar(100)")]
|
||||
public string ProgressStatus
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProgressStatus;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProgressStatus != value))
|
||||
{
|
||||
this.OnProgressStatusChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProgressStatus = value;
|
||||
this.SendPropertyChanged("ProgressStatus");
|
||||
this.OnProgressStatusChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="Comprehensive_NCRManagement_Sys_User", Storage="_Sys_User", ThisKey="CompileMan", OtherKey="UserId", IsForeignKey=true)]
|
||||
public Sys_User Sys_User
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user