20250911 修改质量事件报告
This commit is contained in:
@@ -9940,6 +9940,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _ModifyDate;
|
||||
|
||||
private System.Nullable<System.DateTime> _IsUserEvaluatedTime;
|
||||
|
||||
private System.Nullable<System.DateTime> _IsDepEvaluatedTime;
|
||||
|
||||
private EntityRef<Base_Depart> _Base_Depart;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -10076,6 +10080,10 @@ namespace Model
|
||||
partial void OnModifyerChanged();
|
||||
partial void OnModifyDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnModifyDateChanged();
|
||||
partial void OnIsUserEvaluatedTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnIsUserEvaluatedTimeChanged();
|
||||
partial void OnIsDepEvaluatedTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnIsDepEvaluatedTimeChanged();
|
||||
#endregion
|
||||
|
||||
public EMC_Punishment()
|
||||
@@ -11354,6 +11362,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUserEvaluatedTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> IsUserEvaluatedTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsUserEvaluatedTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsUserEvaluatedTime != value))
|
||||
{
|
||||
this.OnIsUserEvaluatedTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsUserEvaluatedTime = value;
|
||||
this.SendPropertyChanged("IsUserEvaluatedTime");
|
||||
this.OnIsUserEvaluatedTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsDepEvaluatedTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> IsDepEvaluatedTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsDepEvaluatedTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsDepEvaluatedTime != value))
|
||||
{
|
||||
this.OnIsDepEvaluatedTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsDepEvaluatedTime = value;
|
||||
this.SendPropertyChanged("IsDepEvaluatedTime");
|
||||
this.OnIsDepEvaluatedTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_EMC_Punishment_Base_Depart", Storage="_Base_Depart", ThisKey="BYC_RU", OtherKey="DepartId", IsForeignKey=true)]
|
||||
public Base_Depart Base_Depart
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user