77
This commit is contained in:
+53
-11
@@ -9763,7 +9763,9 @@ namespace Model
|
||||
|
||||
private System.Nullable<System.DateTime> _CreateDate;
|
||||
|
||||
private System.Nullable<bool> _IsEvaluated;
|
||||
private System.Nullable<bool> _IsUserEvaluated;
|
||||
|
||||
private System.Nullable<bool> _IsDepEvaluated;
|
||||
|
||||
private EntityRef<Base_Depart> _Base_Depart;
|
||||
|
||||
@@ -9813,8 +9815,10 @@ namespace Model
|
||||
partial void OnRelatedSesMailIsSendChanged();
|
||||
partial void OnCreateDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCreateDateChanged();
|
||||
partial void OnIsEvaluatedChanging(System.Nullable<bool> value);
|
||||
partial void OnIsEvaluatedChanged();
|
||||
partial void OnIsUserEvaluatedChanging(System.Nullable<bool> value);
|
||||
partial void OnIsUserEvaluatedChanged();
|
||||
partial void OnIsDepEvaluatedChanging(System.Nullable<bool> value);
|
||||
partial void OnIsDepEvaluatedChanged();
|
||||
#endregion
|
||||
|
||||
public EMC_Punishment()
|
||||
@@ -10232,22 +10236,42 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsEvaluated", DbType="Bit")]
|
||||
public System.Nullable<bool> IsEvaluated
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUserEvaluated", DbType="Bit")]
|
||||
public System.Nullable<bool> IsUserEvaluated
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsEvaluated;
|
||||
return this._IsUserEvaluated;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsEvaluated != value))
|
||||
if ((this._IsUserEvaluated != value))
|
||||
{
|
||||
this.OnIsEvaluatedChanging(value);
|
||||
this.OnIsUserEvaluatedChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsEvaluated = value;
|
||||
this.SendPropertyChanged("IsEvaluated");
|
||||
this.OnIsEvaluatedChanged();
|
||||
this._IsUserEvaluated = value;
|
||||
this.SendPropertyChanged("IsUserEvaluated");
|
||||
this.OnIsUserEvaluatedChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsDepEvaluated", DbType="Bit")]
|
||||
public System.Nullable<bool> IsDepEvaluated
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsDepEvaluated;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsDepEvaluated != value))
|
||||
{
|
||||
this.OnIsDepEvaluatedChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsDepEvaluated = value;
|
||||
this.SendPropertyChanged("IsDepEvaluated");
|
||||
this.OnIsDepEvaluatedChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -18710,6 +18734,8 @@ namespace Model
|
||||
|
||||
private string _ViolationDegree;
|
||||
|
||||
private string _ShowViolationDegree;
|
||||
|
||||
public FC_SESReportView()
|
||||
{
|
||||
}
|
||||
@@ -19033,6 +19059,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ShowViolationDegree", DbType="NChar(1)")]
|
||||
public string ShowViolationDegree
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ShowViolationDegree;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ShowViolationDegree != value))
|
||||
{
|
||||
this._ShowViolationDegree = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.FC_SignedContracts")]
|
||||
|
||||
Reference in New Issue
Block a user