焊接修改
This commit is contained in:
@@ -0,0 +1 @@
|
||||
{"RootPath":"D:\\数据\\诺必达\\湛江巴斯夫\\Basf_TCC7\\HJGL\\Model","ProjectFileName":"Model.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"APIItem\\BaseInfoItem.cs"},{"SourceFile":"APIItem\\CheckItem.cs"},{"SourceFile":"APIItem\\PipeLineQueryItem.cs"},{"SourceFile":"APIItem\\ResponeData.cs"},{"SourceFile":"APIItem\\UserItem.cs"},{"SourceFile":"APIItem\\WelderPerformanceItem.cs"},{"SourceFile":"APIItem\\WeldJointItem.cs"},{"SourceFile":"APIItem\\WorkloadItem.cs"},{"SourceFile":"Chart\\DataSourceChart.cs"},{"SourceFile":"Chart\\DataSourcePoint.cs"},{"SourceFile":"Chart\\DataSourceTeam.cs"},{"SourceFile":"ErrorInfo.cs"},{"SourceFile":"HandleStep.cs"},{"SourceFile":"Model.cs"},{"SourceFile":"ModelProc.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"SpSysMenuItem.cs"},{"SourceFile":"SpTDesktopItem.cs"},{"SourceFile":"SpWeldingDailyItem.cs"},{"SourceFile":"ViewModels\\ImportErrorViewModel.cs"},{"SourceFile":"ViewModels\\TestPackageInfoViewModel.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.8.AssemblyAttributes.cs"}],"References":[{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.8\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\数据\\诺必达\\湛江巴斯夫\\Basf_TCC7\\HJGL\\Model\\bin\\Debug\\Model.dll","OutputItemRelativePath":"Model.dll"},{"OutputItemFullPath":"D:\\数据\\诺必达\\湛江巴斯夫\\Basf_TCC7\\HJGL\\Model\\bin\\Debug\\Model.pdb","OutputItemRelativePath":"Model.pdb"}],"CopyToOutputEntries":[]}
|
||||
+104
-2
@@ -20956,6 +20956,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsSuperQueWelding;
|
||||
|
||||
private System.Nullable<bool> _IsBracket;
|
||||
|
||||
private EntitySet<Batch_BatchTrustItem> _Batch_BatchTrustItem;
|
||||
|
||||
private EntitySet<Batch_PointBatchItem> _Batch_PointBatchItem;
|
||||
@@ -21100,6 +21102,8 @@ namespace Model
|
||||
partial void OnAuditStatusChanged();
|
||||
partial void OnIsSuperQueWeldingChanging(System.Nullable<bool> value);
|
||||
partial void OnIsSuperQueWeldingChanged();
|
||||
partial void OnIsBracketChanging(System.Nullable<bool> value);
|
||||
partial void OnIsBracketChanged();
|
||||
#endregion
|
||||
|
||||
public Pipeline_WeldJoint()
|
||||
@@ -22194,6 +22198,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsBracket", DbType="Bit")]
|
||||
public System.Nullable<bool> IsBracket
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsBracket;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsBracket != value))
|
||||
{
|
||||
this.OnIsBracketChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsBracket = value;
|
||||
this.SendPropertyChanged("IsBracket");
|
||||
this.OnIsBracketChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Batch_BatchTrustItem_Pipeline_WeldJoint", Storage="_Batch_BatchTrustItem", ThisKey="WeldJointId", OtherKey="WeldJointId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Batch_BatchTrustItem> Batch_BatchTrustItem
|
||||
{
|
||||
@@ -28832,6 +28856,8 @@ namespace Model
|
||||
|
||||
private string _Value38;
|
||||
|
||||
private string _Value39;
|
||||
|
||||
private EntityRef<Base_Project> _Base_Project;
|
||||
|
||||
private EntityRef<Sys_User> _Sys_User;
|
||||
@@ -28928,6 +28954,8 @@ namespace Model
|
||||
partial void OnValue37Changed();
|
||||
partial void OnValue38Changing(string value);
|
||||
partial void OnValue38Changed();
|
||||
partial void OnValue39Changing(string value);
|
||||
partial void OnValue39Changed();
|
||||
#endregion
|
||||
|
||||
public Sys_DataInTemp()
|
||||
@@ -29825,6 +29853,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Value39", DbType="NVarChar(50)")]
|
||||
public string Value39
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Value39;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Value39 != value))
|
||||
{
|
||||
this.OnValue39Changing(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Value39 = value;
|
||||
this.SendPropertyChanged("Value39");
|
||||
this.OnValue39Changed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_Sys_DataInTemp_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
|
||||
public Base_Project Base_Project
|
||||
{
|
||||
@@ -34549,6 +34597,8 @@ namespace Model
|
||||
|
||||
private string _PipelineCode;
|
||||
|
||||
private string _PipelineId;
|
||||
|
||||
private string _PipingClassCode;
|
||||
|
||||
private string _WeldJointCode;
|
||||
@@ -34867,6 +34917,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineId", DbType="NVarChar(50)")]
|
||||
public string PipelineId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PipelineId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PipelineId != value))
|
||||
{
|
||||
this._PipelineId = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipingClassCode", DbType="NVarChar(50)")]
|
||||
public string PipingClassCode
|
||||
{
|
||||
@@ -34883,7 +34949,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldJointCode", DbType="NVarChar(51)")]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldJointCode", DbType="NVarChar(50)")]
|
||||
public string WeldJointCode
|
||||
{
|
||||
get
|
||||
@@ -42169,6 +42235,8 @@ namespace Model
|
||||
|
||||
private string _WeldSilkCode;
|
||||
|
||||
private string _WeldSilkName;
|
||||
|
||||
private string _GrooveTypeCode;
|
||||
|
||||
private string _Is_hjName;
|
||||
@@ -42201,6 +42269,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<bool> _IsPMI;
|
||||
|
||||
private System.Nullable<bool> _IsBracket;
|
||||
|
||||
private System.Nullable<bool> _IsGoldJoint;
|
||||
|
||||
private string _WPQId;
|
||||
@@ -43095,7 +43165,7 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldSilkCode", DbType="VarChar(1) NOT NULL", CanBeNull=false)]
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldSilkCode", DbType="NVarChar(50)")]
|
||||
public string WeldSilkCode
|
||||
{
|
||||
get
|
||||
@@ -43111,6 +43181,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldSilkName", DbType="NVarChar(50)")]
|
||||
public string WeldSilkName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._WeldSilkName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._WeldSilkName != value))
|
||||
{
|
||||
this._WeldSilkName = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GrooveTypeCode", DbType="NVarChar(50)")]
|
||||
public string GrooveTypeCode
|
||||
{
|
||||
@@ -43367,6 +43453,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsBracket", DbType="Bit")]
|
||||
public System.Nullable<bool> IsBracket
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsBracket;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsBracket != value))
|
||||
{
|
||||
this._IsBracket = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsGoldJoint", DbType="Bit")]
|
||||
public System.Nullable<bool> IsGoldJoint
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user