11
This commit is contained in:
@@ -9731,6 +9731,10 @@ namespace Model
|
||||
|
||||
private string _Def;
|
||||
|
||||
private System.Nullable<bool> _RelatedSesMailIsSend;
|
||||
|
||||
private System.Nullable<System.DateTime> _CreateDate;
|
||||
|
||||
private EntityRef<Base_Depart> _Base_Depart;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -9775,6 +9779,10 @@ namespace Model
|
||||
partial void OnSelectYesNoChanged();
|
||||
partial void OnDefChanging(string value);
|
||||
partial void OnDefChanged();
|
||||
partial void OnRelatedSesMailIsSendChanging(System.Nullable<bool> value);
|
||||
partial void OnRelatedSesMailIsSendChanged();
|
||||
partial void OnCreateDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCreateDateChanged();
|
||||
#endregion
|
||||
|
||||
public EMC_Punishment()
|
||||
@@ -10152,6 +10160,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RelatedSesMailIsSend", DbType="Bit")]
|
||||
public System.Nullable<bool> RelatedSesMailIsSend
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RelatedSesMailIsSend;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RelatedSesMailIsSend != value))
|
||||
{
|
||||
this.OnRelatedSesMailIsSendChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RelatedSesMailIsSend = value;
|
||||
this.SendPropertyChanged("RelatedSesMailIsSend");
|
||||
this.OnRelatedSesMailIsSendChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> CreateDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CreateDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CreateDate != value))
|
||||
{
|
||||
this.OnCreateDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CreateDate = value;
|
||||
this.SendPropertyChanged("CreateDate");
|
||||
this.OnCreateDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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
|
||||
{
|
||||
@@ -13557,6 +13605,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _InquiryNum;
|
||||
|
||||
private string _OtherDef;
|
||||
|
||||
private EntitySet<FC_ContractManagement> _FC_ContractManagement;
|
||||
|
||||
private EntityRef<Base_Contractor> _Base_Contractor;
|
||||
@@ -13725,6 +13775,8 @@ namespace Model
|
||||
partial void OnIsInquiryChanged();
|
||||
partial void OnInquiryNumChanging(System.Nullable<int> value);
|
||||
partial void OnInquiryNumChanged();
|
||||
partial void OnOtherDefChanging(string value);
|
||||
partial void OnOtherDefChanged();
|
||||
#endregion
|
||||
|
||||
public FC_SESRelatedData()
|
||||
@@ -15165,6 +15217,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OtherDef", DbType="NVarChar(300)")]
|
||||
public string OtherDef
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._OtherDef;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._OtherDef != value))
|
||||
{
|
||||
this.OnOtherDefChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._OtherDef = value;
|
||||
this.SendPropertyChanged("OtherDef");
|
||||
this.OnOtherDefChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_FC_ContractManagement_FC_SESRelatedData", Storage="_FC_ContractManagement", ThisKey="ID", OtherKey="FC_ID", DeleteRule="NO ACTION")]
|
||||
public EntitySet<FC_ContractManagement> FC_ContractManagement
|
||||
{
|
||||
@@ -25265,6 +25337,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _OthersNum;
|
||||
|
||||
private string _OtherDef;
|
||||
|
||||
private string _Proposed;
|
||||
|
||||
private System.Nullable<decimal> _Total;
|
||||
@@ -25787,6 +25861,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OtherDef", DbType="NVarChar(300)")]
|
||||
public string OtherDef
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._OtherDef;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._OtherDef != value))
|
||||
{
|
||||
this._OtherDef = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Proposed", DbType="NVarChar(2000)")]
|
||||
public string Proposed
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user