20221008 焊接数据分析修改

This commit is contained in:
2022-10-08 23:50:15 +08:00
parent 4ad6950292
commit 2302d80940
12 changed files with 825 additions and 272 deletions
+33
View File
@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class PackagingManageDetailItem
{
public string PackagingManageId { get; set; }
public string PackagingCode { get; set; }
public string ProjectName { get; set; }
public string ContactName { get; set; }
public string ContactPhone { get; set; }
public string StackingPosition { get; set; }
public string PlanStartDate { get; set; }
public string UnitWorkName { get; set; }
}
public class PackagingPrepipeItem
{
public string PipelineComponentCode { get; set; }
public string PreUnit { get; set; }
public string UnitWorkName { get; set; }
}
public class PackagingManageItem
{
public PackagingManageDetailItem packagingManageDetailItem { get; set; }
public List<PackagingPrepipeItem> packagingPrepipeItems { get; set; }
}
}
+12
View File
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class PrePipelineItem
{
}
}
+31
View File
@@ -49,6 +49,16 @@ namespace Model
get;
set;
}
public string UnitName
{
get;
set;
}
public string UnitWorkName
{
get;
set;
}
/// <summary>
///
/// </summary>
@@ -65,6 +75,26 @@ namespace Model
get;
set;
}
public string MaterialCode
{
get;
set;
}
public string Specification
{
get;
set;
}
public string WeldTypeCode
{
get;
set;
}
public string JointAttribute
{
get;
set;
}
/// <summary>
///
/// </summary>
@@ -81,5 +111,6 @@ namespace Model
get;
set;
}
}
}
+2
View File
@@ -162,9 +162,11 @@
<Compile Include="HandleStep.cs" />
<Compile Include="HJGL\3DParameter.cs" />
<Compile Include="HJGL\MaterialStockItem.cs" />
<Compile Include="HJGL\PackagingManageItem.cs" />
<Compile Include="HJGL\Pipeline_ComponentQRCodeItem.cs" />
<Compile Include="HJGL\PointBatch.cs" />
<Compile Include="HJGL\PointBatchItem.cs" />
<Compile Include="HJGL\PrePipelineItem.cs" />
<Compile Include="HJGL\SpWeldingDailyItem.cs" />
<Compile Include="HJGL\sp_index_HJGLItem.cs" />
<Compile Include="HSSE\DigDataHSEDataCollectItem.cs" />