This commit is contained in:
parent
192c8c229c
commit
f68528a197
|
@ -1,2 +1,2 @@
|
|||
Alter TABLE [dbo].[HJGL_BS_Welder]add
|
||||
Alter TABLE [dbo].Project_Welder add
|
||||
[ExchangeTime] [datetime] NULL
|
|
@ -24431,8 +24431,6 @@ namespace Model
|
|||
|
||||
private string _PhotoUrl;
|
||||
|
||||
private System.Nullable<System.DateTime> _ExchangeTime;
|
||||
|
||||
private EntitySet<HJGL_BO_Batch> _HJGL_BO_Batch;
|
||||
|
||||
private EntitySet<HJGL_BO_PreWeldReportMain> _HJGL_BO_PreWeldReportMain;
|
||||
|
@ -24549,8 +24547,6 @@ namespace Model
|
|||
partial void OnMaxHanTiaoChanged();
|
||||
partial void OnPhotoUrlChanging(string value);
|
||||
partial void OnPhotoUrlChanged();
|
||||
partial void OnExchangeTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnExchangeTimeChanged();
|
||||
#endregion
|
||||
|
||||
public HJGL_BS_Welder()
|
||||
|
@ -25397,26 +25393,6 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ExchangeTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> ExchangeTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ExchangeTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ExchangeTime != value))
|
||||
{
|
||||
this.OnExchangeTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ExchangeTime = value;
|
||||
this.SendPropertyChanged("ExchangeTime");
|
||||
this.OnExchangeTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_BO_Batch_HJGL_BS_Welder", Storage="_HJGL_BO_Batch", ThisKey="WED_ID", OtherKey="WED_ID", DeleteRule="NO ACTION")]
|
||||
public EntitySet<HJGL_BO_Batch> HJGL_BO_Batch
|
||||
{
|
||||
|
@ -82334,6 +82310,8 @@ namespace Model
|
|||
|
||||
private string _ApproveMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _ExchangeTime;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<HJGL_BS_Welder> _HJGL_BS_Welder;
|
||||
|
@ -82356,6 +82334,8 @@ namespace Model
|
|||
partial void OnIsApproveChanged();
|
||||
partial void OnApproveManChanging(string value);
|
||||
partial void OnApproveManChanged();
|
||||
partial void OnExchangeTimeChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnExchangeTimeChanged();
|
||||
#endregion
|
||||
|
||||
public Project_Welder()
|
||||
|
@ -82513,6 +82493,26 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ExchangeTime", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> ExchangeTime
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ExchangeTime;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ExchangeTime != value))
|
||||
{
|
||||
this.OnExchangeTimeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ExchangeTime = value;
|
||||
this.SendPropertyChanged("ExchangeTime");
|
||||
this.OnExchangeTimeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Project_Welder_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue