合同增加合同条款、合同主要内容
This commit is contained in:
@@ -137389,6 +137389,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _IsItACentralizedPurchaseSupplier;
|
||||
|
||||
private string _Clause;
|
||||
|
||||
private string _MainContent;
|
||||
|
||||
private EntityRef<Base_Depart> _Base_Depart;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
@@ -137497,6 +137501,10 @@ namespace Model
|
||||
partial void OnSubcontractingMethodChanged();
|
||||
partial void OnIsItACentralizedPurchaseSupplierChanging(System.Nullable<int> value);
|
||||
partial void OnIsItACentralizedPurchaseSupplierChanged();
|
||||
partial void OnClauseChanging(string value);
|
||||
partial void OnClauseChanged();
|
||||
partial void OnMainContentChanging(string value);
|
||||
partial void OnMainContentChanged();
|
||||
#endregion
|
||||
|
||||
public PHTGL_Contract()
|
||||
@@ -138480,6 +138488,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Clause", DbType="NVarChar(1000)")]
|
||||
public string Clause
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Clause;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Clause != value))
|
||||
{
|
||||
this.OnClauseChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Clause = value;
|
||||
this.SendPropertyChanged("Clause");
|
||||
this.OnClauseChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainContent", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||
public string MainContent
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MainContent;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MainContent != value))
|
||||
{
|
||||
this.OnMainContentChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MainContent = value;
|
||||
this.SendPropertyChanged("MainContent");
|
||||
this.OnMainContentChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HTGL_Contract_Base_Depart", Storage="_Base_Depart", ThisKey="DepartId", OtherKey="DepartId", IsForeignKey=true)]
|
||||
public Base_Depart Base_Depart
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user