2023-04-25-001
This commit is contained in:
+73
-1
@@ -170628,6 +170628,10 @@ namespace Model
|
||||
|
||||
private string _BidUnitFileCode;
|
||||
|
||||
private string _UnitId;
|
||||
|
||||
private string _DepartId;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -170672,6 +170676,10 @@ namespace Model
|
||||
partial void OnBidNoticeCodeChanged();
|
||||
partial void OnBidUnitFileCodeChanging(string value);
|
||||
partial void OnBidUnitFileCodeChanged();
|
||||
partial void OnUnitIdChanging(string value);
|
||||
partial void OnUnitIdChanged();
|
||||
partial void OnDepartIdChanging(string value);
|
||||
partial void OnDepartIdChanged();
|
||||
#endregion
|
||||
|
||||
public PHTGL_BidDocumentsStandingBook()
|
||||
@@ -170879,7 +170887,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposedInviter", DbType="VarChar(100)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProposedInviter", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string ProposedInviter
|
||||
{
|
||||
get
|
||||
@@ -171079,6 +171087,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="VarChar(50)")]
|
||||
public string UnitId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UnitId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UnitId != value))
|
||||
{
|
||||
this.OnUnitIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._UnitId = value;
|
||||
this.SendPropertyChanged("UnitId");
|
||||
this.OnUnitIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DepartId", DbType="VarChar(50)")]
|
||||
public string DepartId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DepartId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DepartId != value))
|
||||
{
|
||||
this.OnDepartIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DepartId = value;
|
||||
this.SendPropertyChanged("DepartId");
|
||||
this.OnDepartIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -173263,6 +173311,8 @@ namespace Model
|
||||
|
||||
private string _MainContent;
|
||||
|
||||
private string _UnitId;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
@@ -173375,6 +173425,8 @@ namespace Model
|
||||
partial void OnClauseChanged();
|
||||
partial void OnMainContentChanging(string value);
|
||||
partial void OnMainContentChanged();
|
||||
partial void OnUnitIdChanging(string value);
|
||||
partial void OnUnitIdChanged();
|
||||
#endregion
|
||||
|
||||
public PHTGL_ContractStandingBook()
|
||||
@@ -174447,6 +174499,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="VarChar(50)")]
|
||||
public string UnitId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._UnitId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._UnitId != value))
|
||||
{
|
||||
this.OnUnitIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._UnitId = value;
|
||||
this.SendPropertyChanged("UnitId");
|
||||
this.OnUnitIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HTGL_ContractStandingBook_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user