提交代码
This commit is contained in:
@@ -2360,6 +2360,12 @@ namespace Model
|
||||
partial void InsertTransfer_PunchlistFrom(Transfer_PunchlistFrom instance);
|
||||
partial void UpdateTransfer_PunchlistFrom(Transfer_PunchlistFrom instance);
|
||||
partial void DeleteTransfer_PunchlistFrom(Transfer_PunchlistFrom instance);
|
||||
partial void InsertTransfer_RotatingEquipment(Transfer_RotatingEquipment instance);
|
||||
partial void UpdateTransfer_RotatingEquipment(Transfer_RotatingEquipment instance);
|
||||
partial void DeleteTransfer_RotatingEquipment(Transfer_RotatingEquipment instance);
|
||||
partial void InsertTransfer_StaticEquipment(Transfer_StaticEquipment instance);
|
||||
partial void UpdateTransfer_StaticEquipment(Transfer_StaticEquipment instance);
|
||||
partial void DeleteTransfer_StaticEquipment(Transfer_StaticEquipment instance);
|
||||
partial void InsertTransfer_Telecom(Transfer_Telecom instance);
|
||||
partial void UpdateTransfer_Telecom(Transfer_Telecom instance);
|
||||
partial void DeleteTransfer_Telecom(Transfer_Telecom instance);
|
||||
@@ -8774,6 +8780,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Transfer_RotatingEquipment> Transfer_RotatingEquipment
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Transfer_RotatingEquipment>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Transfer_StaticEquipment> Transfer_StaticEquipment
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Transfer_StaticEquipment>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Transfer_Telecom> Transfer_Telecom
|
||||
{
|
||||
get
|
||||
@@ -370477,6 +370499,514 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Transfer_RotatingEquipment")]
|
||||
public partial class Transfer_RotatingEquipment : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _Id;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private string _RotatingEquipment;
|
||||
|
||||
private string _SYSTEM;
|
||||
|
||||
private string _Subsystem;
|
||||
|
||||
private string _TestPackage;
|
||||
|
||||
private System.Nullable<System.DateTime> _TestPackageSTART;
|
||||
|
||||
private System.Nullable<System.DateTime> _TestPackageFINISH;
|
||||
|
||||
private string _MechanicalFINALStatus;
|
||||
|
||||
#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 OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnRotatingEquipmentChanging(string value);
|
||||
partial void OnRotatingEquipmentChanged();
|
||||
partial void OnSYSTEMChanging(string value);
|
||||
partial void OnSYSTEMChanged();
|
||||
partial void OnSubsystemChanging(string value);
|
||||
partial void OnSubsystemChanged();
|
||||
partial void OnTestPackageChanging(string value);
|
||||
partial void OnTestPackageChanged();
|
||||
partial void OnTestPackageSTARTChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnTestPackageSTARTChanged();
|
||||
partial void OnTestPackageFINISHChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnTestPackageFINISHChanged();
|
||||
partial void OnMechanicalFINALStatusChanging(string value);
|
||||
partial void OnMechanicalFINALStatusChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_RotatingEquipment()
|
||||
{
|
||||
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="_ProjectId", DbType="NVarChar(50)")]
|
||||
public string ProjectId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectId != value))
|
||||
{
|
||||
this.OnProjectIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectId = value;
|
||||
this.SendPropertyChanged("ProjectId");
|
||||
this.OnProjectIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RotatingEquipment", DbType="NVarChar(50)")]
|
||||
public string RotatingEquipment
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._RotatingEquipment;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._RotatingEquipment != value))
|
||||
{
|
||||
this.OnRotatingEquipmentChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._RotatingEquipment = value;
|
||||
this.SendPropertyChanged("RotatingEquipment");
|
||||
this.OnRotatingEquipmentChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SYSTEM", DbType="NVarChar(50)")]
|
||||
public string SYSTEM
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SYSTEM;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SYSTEM != value))
|
||||
{
|
||||
this.OnSYSTEMChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SYSTEM = value;
|
||||
this.SendPropertyChanged("SYSTEM");
|
||||
this.OnSYSTEMChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Subsystem", DbType="NVarChar(50)")]
|
||||
public string Subsystem
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Subsystem;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Subsystem != value))
|
||||
{
|
||||
this.OnSubsystemChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Subsystem = value;
|
||||
this.SendPropertyChanged("Subsystem");
|
||||
this.OnSubsystemChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackage", DbType="NVarChar(50)")]
|
||||
public string TestPackage
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TestPackage;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TestPackage != value))
|
||||
{
|
||||
this.OnTestPackageChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TestPackage = value;
|
||||
this.SendPropertyChanged("TestPackage");
|
||||
this.OnTestPackageChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackageSTART", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> TestPackageSTART
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TestPackageSTART;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TestPackageSTART != value))
|
||||
{
|
||||
this.OnTestPackageSTARTChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TestPackageSTART = value;
|
||||
this.SendPropertyChanged("TestPackageSTART");
|
||||
this.OnTestPackageSTARTChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackageFINISH", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> TestPackageFINISH
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TestPackageFINISH;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TestPackageFINISH != value))
|
||||
{
|
||||
this.OnTestPackageFINISHChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TestPackageFINISH = value;
|
||||
this.SendPropertyChanged("TestPackageFINISH");
|
||||
this.OnTestPackageFINISHChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MechanicalFINALStatus", DbType="NVarChar(50)")]
|
||||
public string MechanicalFINALStatus
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MechanicalFINALStatus;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MechanicalFINALStatus != value))
|
||||
{
|
||||
this.OnMechanicalFINALStatusChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MechanicalFINALStatus = value;
|
||||
this.SendPropertyChanged("MechanicalFINALStatus");
|
||||
this.OnMechanicalFINALStatusChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.Transfer_StaticEquipment")]
|
||||
public partial class Transfer_StaticEquipment : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _Id;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private string _StaticEquipment;
|
||||
|
||||
private string _SYSTEM;
|
||||
|
||||
private string _Subsystem;
|
||||
|
||||
private string _TestPackage;
|
||||
|
||||
private System.Nullable<System.DateTime> _TestPackageSTART;
|
||||
|
||||
private System.Nullable<System.DateTime> _TestPackageFINISH;
|
||||
|
||||
private string _MechanicalFINALStatus;
|
||||
|
||||
#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 OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnStaticEquipmentChanging(string value);
|
||||
partial void OnStaticEquipmentChanged();
|
||||
partial void OnSYSTEMChanging(string value);
|
||||
partial void OnSYSTEMChanged();
|
||||
partial void OnSubsystemChanging(string value);
|
||||
partial void OnSubsystemChanged();
|
||||
partial void OnTestPackageChanging(string value);
|
||||
partial void OnTestPackageChanged();
|
||||
partial void OnTestPackageSTARTChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnTestPackageSTARTChanged();
|
||||
partial void OnTestPackageFINISHChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnTestPackageFINISHChanged();
|
||||
partial void OnMechanicalFINALStatusChanging(string value);
|
||||
partial void OnMechanicalFINALStatusChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_StaticEquipment()
|
||||
{
|
||||
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="_ProjectId", DbType="NVarChar(50)")]
|
||||
public string ProjectId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectId != value))
|
||||
{
|
||||
this.OnProjectIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectId = value;
|
||||
this.SendPropertyChanged("ProjectId");
|
||||
this.OnProjectIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_StaticEquipment", DbType="NVarChar(50)")]
|
||||
public string StaticEquipment
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._StaticEquipment;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._StaticEquipment != value))
|
||||
{
|
||||
this.OnStaticEquipmentChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._StaticEquipment = value;
|
||||
this.SendPropertyChanged("StaticEquipment");
|
||||
this.OnStaticEquipmentChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SYSTEM", DbType="NVarChar(50)")]
|
||||
public string SYSTEM
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SYSTEM;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SYSTEM != value))
|
||||
{
|
||||
this.OnSYSTEMChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SYSTEM = value;
|
||||
this.SendPropertyChanged("SYSTEM");
|
||||
this.OnSYSTEMChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Subsystem", DbType="NVarChar(50)")]
|
||||
public string Subsystem
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Subsystem;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Subsystem != value))
|
||||
{
|
||||
this.OnSubsystemChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Subsystem = value;
|
||||
this.SendPropertyChanged("Subsystem");
|
||||
this.OnSubsystemChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackage", DbType="NVarChar(50)")]
|
||||
public string TestPackage
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TestPackage;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TestPackage != value))
|
||||
{
|
||||
this.OnTestPackageChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TestPackage = value;
|
||||
this.SendPropertyChanged("TestPackage");
|
||||
this.OnTestPackageChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackageSTART", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> TestPackageSTART
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TestPackageSTART;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TestPackageSTART != value))
|
||||
{
|
||||
this.OnTestPackageSTARTChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TestPackageSTART = value;
|
||||
this.SendPropertyChanged("TestPackageSTART");
|
||||
this.OnTestPackageSTARTChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TestPackageFINISH", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> TestPackageFINISH
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TestPackageFINISH;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TestPackageFINISH != value))
|
||||
{
|
||||
this.OnTestPackageFINISHChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TestPackageFINISH = value;
|
||||
this.SendPropertyChanged("TestPackageFINISH");
|
||||
this.OnTestPackageFINISHChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MechanicalFINALStatus", DbType="NVarChar(50)")]
|
||||
public string MechanicalFINALStatus
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MechanicalFINALStatus;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MechanicalFINALStatus != value))
|
||||
{
|
||||
this.OnMechanicalFINALStatusChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MechanicalFINALStatus = value;
|
||||
this.SendPropertyChanged("MechanicalFINALStatus");
|
||||
this.OnMechanicalFINALStatusChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.Transfer_Telecom")]
|
||||
public partial class Transfer_Telecom : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user