This commit is contained in:
2024-07-30 10:56:09 +08:00
parent 451f040230
commit fd20439eb9
5 changed files with 820 additions and 6 deletions
+457
View File
@@ -2537,6 +2537,9 @@ namespace Model
partial void InsertTransfer_StaticEquipment(Transfer_StaticEquipment instance);
partial void UpdateTransfer_StaticEquipment(Transfer_StaticEquipment instance);
partial void DeleteTransfer_StaticEquipment(Transfer_StaticEquipment instance);
partial void InsertTransfer_SystemControl(Transfer_SystemControl instance);
partial void UpdateTransfer_SystemControl(Transfer_SystemControl instance);
partial void DeleteTransfer_SystemControl(Transfer_SystemControl instance);
partial void InsertTransfer_Telecom(Transfer_Telecom instance);
partial void UpdateTransfer_Telecom(Transfer_Telecom instance);
partial void DeleteTransfer_Telecom(Transfer_Telecom instance);
@@ -9429,6 +9432,14 @@ namespace Model
}
}
public System.Data.Linq.Table<Transfer_SystemControl> Transfer_SystemControl
{
get
{
return this.GetTable<Transfer_SystemControl>();
}
}
public System.Data.Linq.Table<Transfer_Telecom> Transfer_Telecom
{
get
@@ -392615,6 +392626,8 @@ namespace Model
private string _SystemNo;
private System.Nullable<System.DateTime> _UpdateTime;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -392647,6 +392660,8 @@ namespace Model
partial void OnDescribeChanged();
partial void OnSystemNoChanging(string value);
partial void OnSystemNoChanged();
partial void OnUpdateTimeChanging(System.Nullable<System.DateTime> value);
partial void OnUpdateTimeChanged();
#endregion
public Transfer_LHCSystemList()
@@ -392934,6 +392949,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UpdateTime", DbType="DateTime")]
public System.Nullable<System.DateTime> UpdateTime
{
get
{
return this._UpdateTime;
}
set
{
if ((this._UpdateTime != value))
{
this.OnUpdateTimeChanging(value);
this.SendPropertyChanging();
this._UpdateTime = value;
this.SendPropertyChanged("UpdateTime");
this.OnUpdateTimeChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -395943,6 +395978,428 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Transfer_SystemControl")]
public partial class Transfer_SystemControl : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _Id;
private string _ProjectId;
private string _SystemNo;
private System.Nullable<System.DateTime> _PlanPWD;
private System.Nullable<System.DateTime> _PlanJWD;
private System.Nullable<System.DateTime> _McPlan;
private string _SubmitPackage;
private System.Nullable<System.DateTime> _ActualPWD;
private System.Nullable<System.DateTime> _ActualJWD;
private System.Nullable<System.DateTime> _ActualMC;
private string _Commissioning;
private string _IaQian;
private string _TcccQ;
private string _SystemStatus;
private string _TurnoverDescription;
private string _Remark;
#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 OnSystemNoChanging(string value);
partial void OnSystemNoChanged();
partial void OnPlanPWDChanging(System.Nullable<System.DateTime> value);
partial void OnPlanPWDChanged();
partial void OnPlanJWDChanging(System.Nullable<System.DateTime> value);
partial void OnPlanJWDChanged();
partial void OnMcPlanChanging(System.Nullable<System.DateTime> value);
partial void OnMcPlanChanged();
partial void OnSubmitPackageChanging(string value);
partial void OnSubmitPackageChanged();
partial void OnActualPWDChanging(System.Nullable<System.DateTime> value);
partial void OnActualPWDChanged();
partial void OnActualJWDChanging(System.Nullable<System.DateTime> value);
partial void OnActualJWDChanged();
partial void OnActualMCChanging(System.Nullable<System.DateTime> value);
partial void OnActualMCChanged();
partial void OnCommissioningChanging(string value);
partial void OnCommissioningChanged();
partial void OnIaQianChanging(string value);
partial void OnIaQianChanged();
partial void OnTcccQChanging(string value);
partial void OnTcccQChanged();
partial void OnSystemStatusChanging(string value);
partial void OnSystemStatusChanged();
partial void OnTurnoverDescriptionChanging(string value);
partial void OnTurnoverDescriptionChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
#endregion
public Transfer_SystemControl()
{
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="_SystemNo", DbType="NVarChar(50)")]
public string SystemNo
{
get
{
return this._SystemNo;
}
set
{
if ((this._SystemNo != value))
{
this.OnSystemNoChanging(value);
this.SendPropertyChanging();
this._SystemNo = value;
this.SendPropertyChanged("SystemNo");
this.OnSystemNoChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanPWD", DbType="DateTime")]
public System.Nullable<System.DateTime> PlanPWD
{
get
{
return this._PlanPWD;
}
set
{
if ((this._PlanPWD != value))
{
this.OnPlanPWDChanging(value);
this.SendPropertyChanging();
this._PlanPWD = value;
this.SendPropertyChanged("PlanPWD");
this.OnPlanPWDChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PlanJWD", DbType="DateTime")]
public System.Nullable<System.DateTime> PlanJWD
{
get
{
return this._PlanJWD;
}
set
{
if ((this._PlanJWD != value))
{
this.OnPlanJWDChanging(value);
this.SendPropertyChanging();
this._PlanJWD = value;
this.SendPropertyChanged("PlanJWD");
this.OnPlanJWDChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_McPlan", DbType="DateTime")]
public System.Nullable<System.DateTime> McPlan
{
get
{
return this._McPlan;
}
set
{
if ((this._McPlan != value))
{
this.OnMcPlanChanging(value);
this.SendPropertyChanging();
this._McPlan = value;
this.SendPropertyChanged("McPlan");
this.OnMcPlanChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubmitPackage", DbType="NVarChar(200)")]
public string SubmitPackage
{
get
{
return this._SubmitPackage;
}
set
{
if ((this._SubmitPackage != value))
{
this.OnSubmitPackageChanging(value);
this.SendPropertyChanging();
this._SubmitPackage = value;
this.SendPropertyChanged("SubmitPackage");
this.OnSubmitPackageChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ActualPWD", DbType="DateTime")]
public System.Nullable<System.DateTime> ActualPWD
{
get
{
return this._ActualPWD;
}
set
{
if ((this._ActualPWD != value))
{
this.OnActualPWDChanging(value);
this.SendPropertyChanging();
this._ActualPWD = value;
this.SendPropertyChanged("ActualPWD");
this.OnActualPWDChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ActualJWD", DbType="DateTime")]
public System.Nullable<System.DateTime> ActualJWD
{
get
{
return this._ActualJWD;
}
set
{
if ((this._ActualJWD != value))
{
this.OnActualJWDChanging(value);
this.SendPropertyChanging();
this._ActualJWD = value;
this.SendPropertyChanged("ActualJWD");
this.OnActualJWDChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ActualMC", DbType="DateTime")]
public System.Nullable<System.DateTime> ActualMC
{
get
{
return this._ActualMC;
}
set
{
if ((this._ActualMC != value))
{
this.OnActualMCChanging(value);
this.SendPropertyChanging();
this._ActualMC = value;
this.SendPropertyChanged("ActualMC");
this.OnActualMCChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Commissioning", DbType="NVarChar(200)")]
public string Commissioning
{
get
{
return this._Commissioning;
}
set
{
if ((this._Commissioning != value))
{
this.OnCommissioningChanging(value);
this.SendPropertyChanging();
this._Commissioning = value;
this.SendPropertyChanged("Commissioning");
this.OnCommissioningChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IaQian", DbType="NVarChar(200)")]
public string IaQian
{
get
{
return this._IaQian;
}
set
{
if ((this._IaQian != value))
{
this.OnIaQianChanging(value);
this.SendPropertyChanging();
this._IaQian = value;
this.SendPropertyChanged("IaQian");
this.OnIaQianChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TcccQ", DbType="NVarChar(200)")]
public string TcccQ
{
get
{
return this._TcccQ;
}
set
{
if ((this._TcccQ != value))
{
this.OnTcccQChanging(value);
this.SendPropertyChanging();
this._TcccQ = value;
this.SendPropertyChanged("TcccQ");
this.OnTcccQChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SystemStatus", DbType="NVarChar(20)")]
public string SystemStatus
{
get
{
return this._SystemStatus;
}
set
{
if ((this._SystemStatus != value))
{
this.OnSystemStatusChanging(value);
this.SendPropertyChanging();
this._SystemStatus = value;
this.SendPropertyChanged("SystemStatus");
this.OnSystemStatusChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TurnoverDescription", DbType="NVarChar(50)")]
public string TurnoverDescription
{
get
{
return this._TurnoverDescription;
}
set
{
if ((this._TurnoverDescription != value))
{
this.OnTurnoverDescriptionChanging(value);
this.SendPropertyChanging();
this._TurnoverDescription = value;
this.SendPropertyChanged("TurnoverDescription");
this.OnTurnoverDescriptionChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(500)")]
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;
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
{