1
This commit is contained in:
@@ -1673,6 +1673,9 @@ namespace Model
|
||||
partial void InsertTw_InOutPlanDetail(Tw_InOutPlanDetail instance);
|
||||
partial void UpdateTw_InOutPlanDetail(Tw_InOutPlanDetail instance);
|
||||
partial void DeleteTw_InOutPlanDetail(Tw_InOutPlanDetail instance);
|
||||
partial void InsertTw_InOutPlanDetail_Relation(Tw_InOutPlanDetail_Relation instance);
|
||||
partial void UpdateTw_InOutPlanDetail_Relation(Tw_InOutPlanDetail_Relation instance);
|
||||
partial void DeleteTw_InOutPlanDetail_Relation(Tw_InOutPlanDetail_Relation instance);
|
||||
partial void InsertTw_InOutPlanMaster(Tw_InOutPlanMaster instance);
|
||||
partial void UpdateTw_InOutPlanMaster(Tw_InOutPlanMaster instance);
|
||||
partial void DeleteTw_InOutPlanMaster(Tw_InOutPlanMaster instance);
|
||||
@@ -6243,6 +6246,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Tw_InOutPlanDetail_Relation> Tw_InOutPlanDetail_Relation
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Tw_InOutPlanDetail_Relation>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Tw_InOutPlanMaster> Tw_InOutPlanMaster
|
||||
{
|
||||
get
|
||||
@@ -257083,6 +257094,188 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Tw_InOutPlanDetail_Relation")]
|
||||
public partial class Tw_InOutPlanDetail_Relation : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _Id;
|
||||
|
||||
private string _PipelineId;
|
||||
|
||||
private string _InOutPlanMasterId;
|
||||
|
||||
private string _MaterialCode;
|
||||
|
||||
private string _PrefabricatedComponents;
|
||||
|
||||
private System.Nullable<decimal> _Number;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnIdChanging(string value);
|
||||
partial void OnIdChanged();
|
||||
partial void OnPipelineIdChanging(string value);
|
||||
partial void OnPipelineIdChanged();
|
||||
partial void OnInOutPlanMasterIdChanging(string value);
|
||||
partial void OnInOutPlanMasterIdChanged();
|
||||
partial void OnMaterialCodeChanging(string value);
|
||||
partial void OnMaterialCodeChanged();
|
||||
partial void OnPrefabricatedComponentsChanging(string value);
|
||||
partial void OnPrefabricatedComponentsChanged();
|
||||
partial void OnNumberChanging(System.Nullable<decimal> value);
|
||||
partial void OnNumberChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_InOutPlanDetail_Relation()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string Id
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Id;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Id != value))
|
||||
{
|
||||
this.OnIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Id = value;
|
||||
this.SendPropertyChanged("Id");
|
||||
this.OnIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineId", DbType="NVarChar(50)")]
|
||||
public string PipelineId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PipelineId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PipelineId != value))
|
||||
{
|
||||
this.OnPipelineIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PipelineId = value;
|
||||
this.SendPropertyChanged("PipelineId");
|
||||
this.OnPipelineIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InOutPlanMasterId", DbType="NVarChar(50)")]
|
||||
public string InOutPlanMasterId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._InOutPlanMasterId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._InOutPlanMasterId != value))
|
||||
{
|
||||
this.OnInOutPlanMasterIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._InOutPlanMasterId = value;
|
||||
this.SendPropertyChanged("InOutPlanMasterId");
|
||||
this.OnInOutPlanMasterIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialCode", DbType="NVarChar(50)")]
|
||||
public string MaterialCode
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MaterialCode;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MaterialCode != value))
|
||||
{
|
||||
this.OnMaterialCodeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MaterialCode = value;
|
||||
this.SendPropertyChanged("MaterialCode");
|
||||
this.OnMaterialCodeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PrefabricatedComponents", DbType="NVarChar(100)")]
|
||||
public string PrefabricatedComponents
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PrefabricatedComponents;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PrefabricatedComponents != value))
|
||||
{
|
||||
this.OnPrefabricatedComponentsChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PrefabricatedComponents = value;
|
||||
this.SendPropertyChanged("PrefabricatedComponents");
|
||||
this.OnPrefabricatedComponentsChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Number", DbType="Decimal(9,2)")]
|
||||
public System.Nullable<decimal> Number
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Number;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Number != value))
|
||||
{
|
||||
this.OnNumberChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Number = value;
|
||||
this.SendPropertyChanged("Number");
|
||||
this.OnNumberChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
protected virtual void SendPropertyChanging()
|
||||
{
|
||||
if ((this.PropertyChanging != null))
|
||||
{
|
||||
this.PropertyChanging(this, emptyChangingEventArgs);
|
||||
}
|
||||
}
|
||||
|
||||
protected virtual void SendPropertyChanged(String propertyName)
|
||||
{
|
||||
if ((this.PropertyChanged != null))
|
||||
{
|
||||
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Tw_InOutPlanMaster")]
|
||||
public partial class Tw_InOutPlanMaster : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -257117,6 +257310,16 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _Category;
|
||||
|
||||
private string _AuditMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate;
|
||||
|
||||
private string _Remark;
|
||||
|
||||
private string _AuditMan2;
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate2;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -257149,6 +257352,16 @@ namespace Model
|
||||
partial void OnReqUnitIdChanged();
|
||||
partial void OnCategoryChanging(System.Nullable<int> value);
|
||||
partial void OnCategoryChanged();
|
||||
partial void OnAuditManChanging(string value);
|
||||
partial void OnAuditManChanged();
|
||||
partial void OnAuditDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDateChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnAuditMan2Changing(string value);
|
||||
partial void OnAuditMan2Changed();
|
||||
partial void OnAuditDate2Changing(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDate2Changed();
|
||||
#endregion
|
||||
|
||||
public Tw_InOutPlanMaster()
|
||||
@@ -257436,6 +257649,106 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditMan", DbType="NVarChar(50)")]
|
||||
public string AuditMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditMan != value))
|
||||
{
|
||||
this.OnAuditManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditMan = value;
|
||||
this.SendPropertyChanged("AuditMan");
|
||||
this.OnAuditManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> AuditDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditDate != value))
|
||||
{
|
||||
this.OnAuditDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditDate = value;
|
||||
this.SendPropertyChanged("AuditDate");
|
||||
this.OnAuditDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(200)")]
|
||||
public string Remark
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Remark;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Remark != value))
|
||||
{
|
||||
this.OnRemarkChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Remark = value;
|
||||
this.SendPropertyChanged("Remark");
|
||||
this.OnRemarkChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditMan2", DbType="NVarChar(50)")]
|
||||
public string AuditMan2
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditMan2;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditMan2 != value))
|
||||
{
|
||||
this.OnAuditMan2Changing(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditMan2 = value;
|
||||
this.SendPropertyChanged("AuditMan2");
|
||||
this.OnAuditMan2Changed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditDate2", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> AuditDate2
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditDate2;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditDate2 != value))
|
||||
{
|
||||
this.OnAuditDate2Changing(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditDate2 = value;
|
||||
this.SendPropertyChanged("AuditDate2");
|
||||
this.OnAuditDate2Changed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -257669,6 +257982,12 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _Category;
|
||||
|
||||
private string _AuditMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate;
|
||||
|
||||
private string _Remark;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -257697,6 +258016,12 @@ namespace Model
|
||||
partial void OnReqUnitIdChanged();
|
||||
partial void OnCategoryChanging(System.Nullable<int> value);
|
||||
partial void OnCategoryChanged();
|
||||
partial void OnAuditManChanging(string value);
|
||||
partial void OnAuditManChanged();
|
||||
partial void OnAuditDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDateChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_InputMaster()
|
||||
@@ -257944,6 +258269,66 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditMan", DbType="NVarChar(50)")]
|
||||
public string AuditMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditMan != value))
|
||||
{
|
||||
this.OnAuditManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditMan = value;
|
||||
this.SendPropertyChanged("AuditMan");
|
||||
this.OnAuditManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> AuditDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditDate != value))
|
||||
{
|
||||
this.OnAuditDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditDate = value;
|
||||
this.SendPropertyChanged("AuditDate");
|
||||
this.OnAuditDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(200)")]
|
||||
public string Remark
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Remark;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Remark != value))
|
||||
{
|
||||
this.OnRemarkChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Remark = value;
|
||||
this.SendPropertyChanged("Remark");
|
||||
this.OnRemarkChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
@@ -258335,6 +258720,10 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _Category;
|
||||
|
||||
private string _AuditMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _AuditDate;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -258363,6 +258752,10 @@ namespace Model
|
||||
partial void OnReqUnitIdChanged();
|
||||
partial void OnCategoryChanging(System.Nullable<int> value);
|
||||
partial void OnCategoryChanged();
|
||||
partial void OnAuditManChanging(string value);
|
||||
partial void OnAuditManChanged();
|
||||
partial void OnAuditDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnAuditDateChanged();
|
||||
#endregion
|
||||
|
||||
public Tw_OutputMaster()
|
||||
@@ -258610,6 +259003,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditMan", DbType="NVarChar(50)")]
|
||||
public string AuditMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditMan != value))
|
||||
{
|
||||
this.OnAuditManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditMan = value;
|
||||
this.SendPropertyChanged("AuditMan");
|
||||
this.OnAuditManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AuditDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> AuditDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._AuditDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._AuditDate != value))
|
||||
{
|
||||
this.OnAuditDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._AuditDate = value;
|
||||
this.SendPropertyChanged("AuditDate");
|
||||
this.OnAuditDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user