20250812 修改质量事项报告
This commit is contained in:
+121
-1
@@ -9930,6 +9930,16 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _UserDepEndDate;
|
||||
|
||||
private System.Nullable<bool> _Pause;
|
||||
|
||||
private System.Nullable<System.DateTime> _PauseDate;
|
||||
|
||||
private string _ModifyContent;
|
||||
|
||||
private string _Modifyer;
|
||||
|
||||
private System.Nullable<System.DateTime> _ModifyDate;
|
||||
|
||||
private EntityRef<Base_Depart> _Base_Depart;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -10056,6 +10066,16 @@ namespace Model
|
||||
partial void OnUserDepStartDateChanged();
|
||||
partial void OnUserDepEndDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnUserDepEndDateChanged();
|
||||
partial void OnPauseChanging(System.Nullable<bool> value);
|
||||
partial void OnPauseChanged();
|
||||
partial void OnPauseDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnPauseDateChanged();
|
||||
partial void OnModifyContentChanging(string value);
|
||||
partial void OnModifyContentChanged();
|
||||
partial void OnModifyerChanging(string value);
|
||||
partial void OnModifyerChanged();
|
||||
partial void OnModifyDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnModifyDateChanged();
|
||||
#endregion
|
||||
|
||||
public EMC_Punishment()
|
||||
@@ -11234,6 +11254,106 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Pause", DbType="Bit")]
|
||||
public System.Nullable<bool> Pause
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Pause;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Pause != value))
|
||||
{
|
||||
this.OnPauseChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Pause = value;
|
||||
this.SendPropertyChanged("Pause");
|
||||
this.OnPauseChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PauseDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> PauseDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PauseDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PauseDate != value))
|
||||
{
|
||||
this.OnPauseDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PauseDate = value;
|
||||
this.SendPropertyChanged("PauseDate");
|
||||
this.OnPauseDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ModifyContent", DbType="NVarChar(2000)")]
|
||||
public string ModifyContent
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ModifyContent;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ModifyContent != value))
|
||||
{
|
||||
this.OnModifyContentChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ModifyContent = value;
|
||||
this.SendPropertyChanged("ModifyContent");
|
||||
this.OnModifyContentChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Modifyer", DbType="NVarChar(50)")]
|
||||
public string Modifyer
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Modifyer;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Modifyer != value))
|
||||
{
|
||||
this.OnModifyerChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Modifyer = value;
|
||||
this.SendPropertyChanged("Modifyer");
|
||||
this.OnModifyerChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ModifyDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> ModifyDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ModifyDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ModifyDate != value))
|
||||
{
|
||||
this.OnModifyDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ModifyDate = value;
|
||||
this.SendPropertyChanged("ModifyDate");
|
||||
this.OnModifyDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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
|
||||
{
|
||||
@@ -38597,7 +38717,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserName", DbType="NVarChar(50)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UserName", DbType="NVarChar(60)")]
|
||||
public string UserName
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user