This commit is contained in:
parent
52cbae5b71
commit
5e3df582da
|
|
@ -17006,7 +17006,7 @@
|
||||||
</COMReference>
|
</COMReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v18.0\WebApplications\Microsoft.WebApplication.targets" />
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v15.0\WebApplications\Microsoft.WebApplication.targets" />
|
||||||
<ProjectExtensions>
|
<ProjectExtensions>
|
||||||
<VisualStudio>
|
<VisualStudio>
|
||||||
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
||||||
|
|
|
||||||
|
|
@ -12420,7 +12420,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveIdea", DbType="NVarChar(200)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ApproveIdea", DbType="NVarChar(2000)")]
|
||||||
public string ApproveIdea
|
public string ApproveIdea
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -22599,8 +22599,6 @@ namespace Model
|
||||||
|
|
||||||
private string _UnitId;
|
private string _UnitId;
|
||||||
|
|
||||||
private string _ProjectId;
|
|
||||||
|
|
||||||
private string _MaterialId;
|
private string _MaterialId;
|
||||||
|
|
||||||
private string _ColorName;
|
private string _ColorName;
|
||||||
|
|
@ -22611,6 +22609,8 @@ namespace Model
|
||||||
|
|
||||||
private string _Remark;
|
private string _Remark;
|
||||||
|
|
||||||
|
private string _ProjectId;
|
||||||
|
|
||||||
#region 可扩展性方法定义
|
#region 可扩展性方法定义
|
||||||
partial void OnLoaded();
|
partial void OnLoaded();
|
||||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||||
|
|
@ -22619,8 +22619,6 @@ namespace Model
|
||||||
partial void OnMaterialColorIdChanged();
|
partial void OnMaterialColorIdChanged();
|
||||||
partial void OnUnitIdChanging(string value);
|
partial void OnUnitIdChanging(string value);
|
||||||
partial void OnUnitIdChanged();
|
partial void OnUnitIdChanged();
|
||||||
partial void OnProjectIdChanging(string value);
|
|
||||||
partial void OnProjectIdChanged();
|
|
||||||
partial void OnMaterialIdChanging(string value);
|
partial void OnMaterialIdChanging(string value);
|
||||||
partial void OnMaterialIdChanged();
|
partial void OnMaterialIdChanged();
|
||||||
partial void OnColorNameChanging(string value);
|
partial void OnColorNameChanging(string value);
|
||||||
|
|
@ -22631,6 +22629,8 @@ namespace Model
|
||||||
partial void OnRGBChanged();
|
partial void OnRGBChanged();
|
||||||
partial void OnRemarkChanging(string value);
|
partial void OnRemarkChanging(string value);
|
||||||
partial void OnRemarkChanged();
|
partial void OnRemarkChanged();
|
||||||
|
partial void OnProjectIdChanging(string value);
|
||||||
|
partial void OnProjectIdChanged();
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public Base_MaterialColor()
|
public Base_MaterialColor()
|
||||||
|
|
@ -22678,26 +22678,6 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[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="_MaterialId", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialId", DbType="NVarChar(50)")]
|
||||||
public string MaterialId
|
public string MaterialId
|
||||||
{
|
{
|
||||||
|
|
@ -22798,6 +22778,26 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[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();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public event PropertyChangingEventHandler PropertyChanging;
|
public event PropertyChangingEventHandler PropertyChanging;
|
||||||
|
|
||||||
public event PropertyChangedEventHandler PropertyChanged;
|
public event PropertyChangedEventHandler PropertyChanged;
|
||||||
|
|
@ -24769,6 +24769,8 @@ namespace Model
|
||||||
|
|
||||||
private EntitySet<Base_ProjectSate> _Base_ProjectSate;
|
private EntitySet<Base_ProjectSate> _Base_ProjectSate;
|
||||||
|
|
||||||
|
private EntitySet<Base_Warehouse> _Base_Warehouse;
|
||||||
|
|
||||||
private EntitySet<HJGL_Batch_NDE> _HJGL_Batch_NDE;
|
private EntitySet<HJGL_Batch_NDE> _HJGL_Batch_NDE;
|
||||||
|
|
||||||
private EntitySet<HJGL_Batch_PointBatch> _HJGL_Batch_PointBatch;
|
private EntitySet<HJGL_Batch_PointBatch> _HJGL_Batch_PointBatch;
|
||||||
|
|
@ -25197,6 +25199,7 @@ namespace Model
|
||||||
this._Base_ProjectType = default(EntityRef<Base_ProjectType>);
|
this._Base_ProjectType = default(EntityRef<Base_ProjectType>);
|
||||||
this._Base_Unit = default(EntityRef<Base_Unit>);
|
this._Base_Unit = default(EntityRef<Base_Unit>);
|
||||||
this._Base_ProjectSate = new EntitySet<Base_ProjectSate>(new Action<Base_ProjectSate>(this.attach_Base_ProjectSate), new Action<Base_ProjectSate>(this.detach_Base_ProjectSate));
|
this._Base_ProjectSate = new EntitySet<Base_ProjectSate>(new Action<Base_ProjectSate>(this.attach_Base_ProjectSate), new Action<Base_ProjectSate>(this.detach_Base_ProjectSate));
|
||||||
|
this._Base_Warehouse = new EntitySet<Base_Warehouse>(new Action<Base_Warehouse>(this.attach_Base_Warehouse), new Action<Base_Warehouse>(this.detach_Base_Warehouse));
|
||||||
this._HJGL_Batch_NDE = new EntitySet<HJGL_Batch_NDE>(new Action<HJGL_Batch_NDE>(this.attach_HJGL_Batch_NDE), new Action<HJGL_Batch_NDE>(this.detach_HJGL_Batch_NDE));
|
this._HJGL_Batch_NDE = new EntitySet<HJGL_Batch_NDE>(new Action<HJGL_Batch_NDE>(this.attach_HJGL_Batch_NDE), new Action<HJGL_Batch_NDE>(this.detach_HJGL_Batch_NDE));
|
||||||
this._HJGL_Batch_PointBatch = new EntitySet<HJGL_Batch_PointBatch>(new Action<HJGL_Batch_PointBatch>(this.attach_HJGL_Batch_PointBatch), new Action<HJGL_Batch_PointBatch>(this.detach_HJGL_Batch_PointBatch));
|
this._HJGL_Batch_PointBatch = new EntitySet<HJGL_Batch_PointBatch>(new Action<HJGL_Batch_PointBatch>(this.attach_HJGL_Batch_PointBatch), new Action<HJGL_Batch_PointBatch>(this.detach_HJGL_Batch_PointBatch));
|
||||||
this._Check_CheckColligation = new EntitySet<Check_CheckColligation>(new Action<Check_CheckColligation>(this.attach_Check_CheckColligation), new Action<Check_CheckColligation>(this.detach_Check_CheckColligation));
|
this._Check_CheckColligation = new EntitySet<Check_CheckColligation>(new Action<Check_CheckColligation>(this.attach_Check_CheckColligation), new Action<Check_CheckColligation>(this.detach_Check_CheckColligation));
|
||||||
|
|
@ -26325,6 +26328,19 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Base_Warehouse_Project", Storage="_Base_Warehouse", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
|
||||||
|
public EntitySet<Base_Warehouse> Base_Warehouse
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._Base_Warehouse;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
this._Base_Warehouse.Assign(value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Batch_NDECheck_Base_Project", Storage="_HJGL_Batch_NDE", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
|
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Batch_NDECheck_Base_Project", Storage="_HJGL_Batch_NDE", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
|
||||||
public EntitySet<HJGL_Batch_NDE> HJGL_Batch_NDE
|
public EntitySet<HJGL_Batch_NDE> HJGL_Batch_NDE
|
||||||
{
|
{
|
||||||
|
|
@ -28684,6 +28700,18 @@ namespace Model
|
||||||
entity.Base_Project = null;
|
entity.Base_Project = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void attach_Base_Warehouse(Base_Warehouse entity)
|
||||||
|
{
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
entity.Base_Project = this;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void detach_Base_Warehouse(Base_Warehouse entity)
|
||||||
|
{
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
entity.Base_Project = null;
|
||||||
|
}
|
||||||
|
|
||||||
private void attach_HJGL_Batch_NDE(HJGL_Batch_NDE entity)
|
private void attach_HJGL_Batch_NDE(HJGL_Batch_NDE entity)
|
||||||
{
|
{
|
||||||
this.SendPropertyChanging();
|
this.SendPropertyChanging();
|
||||||
|
|
@ -38942,6 +38970,8 @@ namespace Model
|
||||||
|
|
||||||
private System.Nullable<System.DateTime> _ModifyTime;
|
private System.Nullable<System.DateTime> _ModifyTime;
|
||||||
|
|
||||||
|
private EntityRef<Base_Project> _Base_Project;
|
||||||
|
|
||||||
#region 可扩展性方法定义
|
#region 可扩展性方法定义
|
||||||
partial void OnLoaded();
|
partial void OnLoaded();
|
||||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||||
|
|
@ -38966,6 +38996,7 @@ namespace Model
|
||||||
|
|
||||||
public Base_Warehouse()
|
public Base_Warehouse()
|
||||||
{
|
{
|
||||||
|
this._Base_Project = default(EntityRef<Base_Project>);
|
||||||
OnCreated();
|
OnCreated();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -39040,6 +39071,10 @@ namespace Model
|
||||||
{
|
{
|
||||||
if ((this._ProjectId != value))
|
if ((this._ProjectId != value))
|
||||||
{
|
{
|
||||||
|
if (this._Base_Project.HasLoadedOrAssignedValue)
|
||||||
|
{
|
||||||
|
throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
|
||||||
|
}
|
||||||
this.OnProjectIdChanging(value);
|
this.OnProjectIdChanging(value);
|
||||||
this.SendPropertyChanging();
|
this.SendPropertyChanging();
|
||||||
this._ProjectId = value;
|
this._ProjectId = value;
|
||||||
|
|
@ -39129,6 +39164,40 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Base_Warehouse_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||||
|
public Base_Project Base_Project
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._Base_Project.Entity;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
Base_Project previousValue = this._Base_Project.Entity;
|
||||||
|
if (((previousValue != value)
|
||||||
|
|| (this._Base_Project.HasLoadedOrAssignedValue == false)))
|
||||||
|
{
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
if ((previousValue != null))
|
||||||
|
{
|
||||||
|
this._Base_Project.Entity = null;
|
||||||
|
previousValue.Base_Warehouse.Remove(this);
|
||||||
|
}
|
||||||
|
this._Base_Project.Entity = value;
|
||||||
|
if ((value != null))
|
||||||
|
{
|
||||||
|
value.Base_Warehouse.Add(this);
|
||||||
|
this._ProjectId = value.ProjectId;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
this._ProjectId = default(string);
|
||||||
|
}
|
||||||
|
this.SendPropertyChanged("Base_Project");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public event PropertyChangingEventHandler PropertyChanging;
|
public event PropertyChangingEventHandler PropertyChanging;
|
||||||
|
|
||||||
public event PropertyChangedEventHandler PropertyChanged;
|
public event PropertyChangedEventHandler PropertyChanged;
|
||||||
|
|
@ -100595,10 +100664,10 @@ namespace Model
|
||||||
|
|
||||||
private string _TrainNumber;
|
private string _TrainNumber;
|
||||||
|
|
||||||
private string _TrainNumberId;
|
|
||||||
|
|
||||||
private System.Nullable<int> _TypeInt;
|
private System.Nullable<int> _TypeInt;
|
||||||
|
|
||||||
|
private string _TrainNumberId;
|
||||||
|
|
||||||
private string _CompileMan;
|
private string _CompileMan;
|
||||||
|
|
||||||
private System.Nullable<System.DateTime> _CompileDate;
|
private System.Nullable<System.DateTime> _CompileDate;
|
||||||
|
|
@ -100633,10 +100702,10 @@ namespace Model
|
||||||
partial void OnReceiveDateChanged();
|
partial void OnReceiveDateChanged();
|
||||||
partial void OnTrainNumberChanging(string value);
|
partial void OnTrainNumberChanging(string value);
|
||||||
partial void OnTrainNumberChanged();
|
partial void OnTrainNumberChanged();
|
||||||
partial void OnTrainNumberIdChanging(string value);
|
|
||||||
partial void OnTrainNumberIdChanged();
|
|
||||||
partial void OnTypeIntChanging(System.Nullable<int> value);
|
partial void OnTypeIntChanging(System.Nullable<int> value);
|
||||||
partial void OnTypeIntChanged();
|
partial void OnTypeIntChanged();
|
||||||
|
partial void OnTrainNumberIdChanging(string value);
|
||||||
|
partial void OnTrainNumberIdChanged();
|
||||||
partial void OnCompileManChanging(string value);
|
partial void OnCompileManChanging(string value);
|
||||||
partial void OnCompileManChanged();
|
partial void OnCompileManChanged();
|
||||||
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
|
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
|
||||||
|
|
@ -100890,26 +100959,6 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrainNumberId", DbType="VarChar(50)")]
|
|
||||||
public string TrainNumberId
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._TrainNumberId;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._TrainNumberId != value))
|
|
||||||
{
|
|
||||||
this.OnTrainNumberIdChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._TrainNumberId = value;
|
|
||||||
this.SendPropertyChanged("TrainNumberId");
|
|
||||||
this.OnTrainNumberIdChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TypeInt", DbType="Int")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TypeInt", DbType="Int")]
|
||||||
public System.Nullable<int> TypeInt
|
public System.Nullable<int> TypeInt
|
||||||
{
|
{
|
||||||
|
|
@ -100930,6 +100979,26 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrainNumberId", DbType="VarChar(50)")]
|
||||||
|
public string TrainNumberId
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._TrainNumberId;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._TrainNumberId != value))
|
||||||
|
{
|
||||||
|
this.OnTrainNumberIdChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._TrainNumberId = value;
|
||||||
|
this.SendPropertyChanged("TrainNumberId");
|
||||||
|
this.OnTrainNumberIdChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
|
||||||
public string CompileMan
|
public string CompileMan
|
||||||
{
|
{
|
||||||
|
|
@ -112225,7 +112294,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Rectification", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Rectification", DbType="NVarChar(500)")]
|
||||||
public string Rectification
|
public string Rectification
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -112351,7 +112420,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Measures", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Measures", DbType="NVarChar(500)")]
|
||||||
public string Measures
|
public string Measures
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -165536,7 +165605,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttentPerson", DbType="NVarChar(500)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AttentPerson", DbType="NVarChar(3000)")]
|
||||||
public string AttentPerson
|
public string AttentPerson
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -196543,7 +196612,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectDescription", DbType="VarChar(255)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectDescription", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||||
public string ProjectDescription
|
public string ProjectDescription
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -196663,7 +196732,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CalculationRule", DbType="VarChar(255)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CalculationRule", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
|
||||||
public string CalculationRule
|
public string CalculationRule
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -196723,7 +196792,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ConstructionSubcontractor", DbType="VarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ConstructionSubcontractor", DbType="VarChar(100)")]
|
||||||
public string ConstructionSubcontractor
|
public string ConstructionSubcontractor
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -197107,7 +197176,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackageEstimate", DbType="Decimal(18,2)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkPackageEstimate", DbType="Decimal(18,3)")]
|
||||||
public System.Nullable<decimal> WorkPackageEstimate
|
public System.Nullable<decimal> WorkPackageEstimate
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -197412,6 +197481,16 @@ namespace Model
|
||||||
|
|
||||||
private string _ProjectId;
|
private string _ProjectId;
|
||||||
|
|
||||||
|
private string _ContractId;
|
||||||
|
|
||||||
|
private string _OrderCode;
|
||||||
|
|
||||||
|
private System.Nullable<System.DateTime> _OrderInDate;
|
||||||
|
|
||||||
|
private System.Nullable<System.DateTime> _OrderOutDate;
|
||||||
|
|
||||||
|
private string _MaterialRequisitionUnit;
|
||||||
|
|
||||||
private System.Nullable<int> _State;
|
private System.Nullable<int> _State;
|
||||||
|
|
||||||
private string _InvoiceCode;
|
private string _InvoiceCode;
|
||||||
|
|
@ -197440,16 +197519,6 @@ namespace Model
|
||||||
|
|
||||||
private string _CreateUser;
|
private string _CreateUser;
|
||||||
|
|
||||||
private string _ContractId;
|
|
||||||
|
|
||||||
private System.Nullable<System.DateTime> _OrderInDate;
|
|
||||||
|
|
||||||
private string _OrderCode;
|
|
||||||
|
|
||||||
private System.Nullable<System.DateTime> _OrderOutDate;
|
|
||||||
|
|
||||||
private string _MaterialRequisitionUnit;
|
|
||||||
|
|
||||||
#region 可扩展性方法定义
|
#region 可扩展性方法定义
|
||||||
partial void OnLoaded();
|
partial void OnLoaded();
|
||||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||||
|
|
@ -197458,6 +197527,16 @@ namespace Model
|
||||||
partial void OnInvoiceIdChanged();
|
partial void OnInvoiceIdChanged();
|
||||||
partial void OnProjectIdChanging(string value);
|
partial void OnProjectIdChanging(string value);
|
||||||
partial void OnProjectIdChanged();
|
partial void OnProjectIdChanged();
|
||||||
|
partial void OnContractIdChanging(string value);
|
||||||
|
partial void OnContractIdChanged();
|
||||||
|
partial void OnOrderCodeChanging(string value);
|
||||||
|
partial void OnOrderCodeChanged();
|
||||||
|
partial void OnOrderInDateChanging(System.Nullable<System.DateTime> value);
|
||||||
|
partial void OnOrderInDateChanged();
|
||||||
|
partial void OnOrderOutDateChanging(System.Nullable<System.DateTime> value);
|
||||||
|
partial void OnOrderOutDateChanged();
|
||||||
|
partial void OnMaterialRequisitionUnitChanging(string value);
|
||||||
|
partial void OnMaterialRequisitionUnitChanged();
|
||||||
partial void OnStateChanging(System.Nullable<int> value);
|
partial void OnStateChanging(System.Nullable<int> value);
|
||||||
partial void OnStateChanged();
|
partial void OnStateChanged();
|
||||||
partial void OnInvoiceCodeChanging(string value);
|
partial void OnInvoiceCodeChanging(string value);
|
||||||
|
|
@ -197486,16 +197565,6 @@ namespace Model
|
||||||
partial void OnCreateDateChanged();
|
partial void OnCreateDateChanged();
|
||||||
partial void OnCreateUserChanging(string value);
|
partial void OnCreateUserChanging(string value);
|
||||||
partial void OnCreateUserChanged();
|
partial void OnCreateUserChanged();
|
||||||
partial void OnContractIdChanging(string value);
|
|
||||||
partial void OnContractIdChanged();
|
|
||||||
partial void OnOrderInDateChanging(System.Nullable<System.DateTime> value);
|
|
||||||
partial void OnOrderInDateChanged();
|
|
||||||
partial void OnOrderCodeChanging(string value);
|
|
||||||
partial void OnOrderCodeChanged();
|
|
||||||
partial void OnOrderOutDateChanging(System.Nullable<System.DateTime> value);
|
|
||||||
partial void OnOrderOutDateChanged();
|
|
||||||
partial void OnMaterialRequisitionUnitChanging(string value);
|
|
||||||
partial void OnMaterialRequisitionUnitChanged();
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public PHTGL_Invoice()
|
public PHTGL_Invoice()
|
||||||
|
|
@ -197543,6 +197612,106 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractId", DbType="NVarChar(50)")]
|
||||||
|
public string ContractId
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._ContractId;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._ContractId != value))
|
||||||
|
{
|
||||||
|
this.OnContractIdChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._ContractId = value;
|
||||||
|
this.SendPropertyChanged("ContractId");
|
||||||
|
this.OnContractIdChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OrderCode", DbType="NVarChar(50)")]
|
||||||
|
public string OrderCode
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._OrderCode;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._OrderCode != value))
|
||||||
|
{
|
||||||
|
this.OnOrderCodeChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._OrderCode = value;
|
||||||
|
this.SendPropertyChanged("OrderCode");
|
||||||
|
this.OnOrderCodeChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OrderInDate", DbType="Date")]
|
||||||
|
public System.Nullable<System.DateTime> OrderInDate
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._OrderInDate;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._OrderInDate != value))
|
||||||
|
{
|
||||||
|
this.OnOrderInDateChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._OrderInDate = value;
|
||||||
|
this.SendPropertyChanged("OrderInDate");
|
||||||
|
this.OnOrderInDateChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OrderOutDate", DbType="Date")]
|
||||||
|
public System.Nullable<System.DateTime> OrderOutDate
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._OrderOutDate;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._OrderOutDate != value))
|
||||||
|
{
|
||||||
|
this.OnOrderOutDateChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._OrderOutDate = value;
|
||||||
|
this.SendPropertyChanged("OrderOutDate");
|
||||||
|
this.OnOrderOutDateChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialRequisitionUnit", DbType="NVarChar(100)")]
|
||||||
|
public string MaterialRequisitionUnit
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return this._MaterialRequisitionUnit;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if ((this._MaterialRequisitionUnit != value))
|
||||||
|
{
|
||||||
|
this.OnMaterialRequisitionUnitChanging(value);
|
||||||
|
this.SendPropertyChanging();
|
||||||
|
this._MaterialRequisitionUnit = value;
|
||||||
|
this.SendPropertyChanged("MaterialRequisitionUnit");
|
||||||
|
this.OnMaterialRequisitionUnitChanged();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_State", DbType="Int")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_State", DbType="Int")]
|
||||||
public System.Nullable<int> State
|
public System.Nullable<int> State
|
||||||
{
|
{
|
||||||
|
|
@ -197823,106 +197992,6 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractId", DbType="NVarChar(50)")]
|
|
||||||
public string ContractId
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._ContractId;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._ContractId != value))
|
|
||||||
{
|
|
||||||
this.OnContractIdChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._ContractId = value;
|
|
||||||
this.SendPropertyChanged("ContractId");
|
|
||||||
this.OnContractIdChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OrderInDate", DbType="Date")]
|
|
||||||
public System.Nullable<System.DateTime> OrderInDate
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._OrderInDate;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._OrderInDate != value))
|
|
||||||
{
|
|
||||||
this.OnOrderInDateChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._OrderInDate = value;
|
|
||||||
this.SendPropertyChanged("OrderInDate");
|
|
||||||
this.OnOrderInDateChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OrderCode", DbType="NVarChar(50)")]
|
|
||||||
public string OrderCode
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._OrderCode;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._OrderCode != value))
|
|
||||||
{
|
|
||||||
this.OnOrderCodeChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._OrderCode = value;
|
|
||||||
this.SendPropertyChanged("OrderCode");
|
|
||||||
this.OnOrderCodeChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OrderOutDate", DbType="Date")]
|
|
||||||
public System.Nullable<System.DateTime> OrderOutDate
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._OrderOutDate;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._OrderOutDate != value))
|
|
||||||
{
|
|
||||||
this.OnOrderOutDateChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._OrderOutDate = value;
|
|
||||||
this.SendPropertyChanged("OrderOutDate");
|
|
||||||
this.OnOrderOutDateChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MaterialRequisitionUnit", DbType="NVarChar(100)")]
|
|
||||||
public string MaterialRequisitionUnit
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return this._MaterialRequisitionUnit;
|
|
||||||
}
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if ((this._MaterialRequisitionUnit != value))
|
|
||||||
{
|
|
||||||
this.OnMaterialRequisitionUnitChanging(value);
|
|
||||||
this.SendPropertyChanging();
|
|
||||||
this._MaterialRequisitionUnit = value;
|
|
||||||
this.SendPropertyChanged("MaterialRequisitionUnit");
|
|
||||||
this.OnMaterialRequisitionUnitChanged();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public event PropertyChangingEventHandler PropertyChanging;
|
public event PropertyChangingEventHandler PropertyChanging;
|
||||||
|
|
||||||
public event PropertyChangedEventHandler PropertyChanged;
|
public event PropertyChangedEventHandler PropertyChanged;
|
||||||
|
|
@ -199301,7 +199370,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReviewResults", DbType="NVarChar(1000)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReviewResults", DbType="NVarChar(50)")]
|
||||||
public string ReviewResults
|
public string ReviewResults
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -322816,7 +322885,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(200)")]
|
||||||
public string Name
|
public string Name
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -323393,7 +323462,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackageContent", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackageContent", DbType="NVarChar(200)")]
|
||||||
public string PackageContent
|
public string PackageContent
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -323584,7 +323653,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackageContent", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackageContent", DbType="NVarChar(200)")]
|
||||||
public string PackageContent
|
public string PackageContent
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -328923,7 +328992,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackageContent", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackageContent", DbType="NVarChar(200)")]
|
||||||
public string PackageContent
|
public string PackageContent
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -330395,7 +330464,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackageContent", DbType="NVarChar(50)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PackageContent", DbType="NVarChar(200)")]
|
||||||
public string PackageContent
|
public string PackageContent
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -340296,7 +340365,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractNo", DbType="NVarChar(500)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractNo", DbType="NVarChar(1500)")]
|
||||||
public string ContractNo
|
public string ContractNo
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
@ -340316,7 +340385,7 @@ namespace Model
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorks", DbType="NVarChar(500)")]
|
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorks", DbType="NVarChar(1500)")]
|
||||||
public string UnitWorks
|
public string UnitWorks
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue