20251009
This commit is contained in:
@@ -1739,6 +1739,8 @@ namespace Model
|
||||
|
||||
private string _DepartLeader;
|
||||
|
||||
private string _DelegatedRepresentative;
|
||||
|
||||
private EntitySet<EMC_CTSalesContracts> _EMC_CTSalesContracts;
|
||||
|
||||
private EntitySet<EMC_CTSalesContracts> _Depart;
|
||||
@@ -1763,6 +1765,8 @@ namespace Model
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnDepartLeaderChanging(string value);
|
||||
partial void OnDepartLeaderChanged();
|
||||
partial void OnDelegatedRepresentativeChanging(string value);
|
||||
partial void OnDelegatedRepresentativeChanged();
|
||||
#endregion
|
||||
|
||||
public Base_Depart()
|
||||
@@ -1875,6 +1879,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DelegatedRepresentative", DbType="NVarChar(50)")]
|
||||
public string DelegatedRepresentative
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DelegatedRepresentative;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DelegatedRepresentative != value))
|
||||
{
|
||||
this.OnDelegatedRepresentativeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DelegatedRepresentative = value;
|
||||
this.SendPropertyChanged("DelegatedRepresentative");
|
||||
this.OnDelegatedRepresentativeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_EMC_CTSalesContracts_Base_Depart", Storage="_EMC_CTSalesContracts", ThisKey="DepartId", OtherKey="DeptOfRevenue", DeleteRule="NO ACTION")]
|
||||
public EntitySet<EMC_CTSalesContracts> EMC_CTSalesContracts
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user