看板质量验收数据汇总

This commit is contained in:
2025-05-06 10:20:27 +08:00
parent 441fbf5985
commit 9957d27137
18 changed files with 2695 additions and 31 deletions
+10
View File
@@ -0,0 +1,10 @@
using System;
namespace Model
{
public class AnalysisData
{
public string name { get; set; }
public int value { get; set; }
}
}
+16
View File
@@ -0,0 +1,16 @@
namespace Model.Enums
{
/// <summary>
/// 焊接缺陷类型
/// </summary>
public enum DefectTypeEnums
{
= 1,
= 2,
= 3,
= 4,
= 5,
= 6
}
}
File diff suppressed because it is too large Load Diff
+6
View File
@@ -239,6 +239,7 @@
<Compile Include="APIItem\WBS_UnitWorkDto.cs" />
<Compile Include="APIItem\WorkSummaryReport.cs" />
<Compile Include="Base_ProjectDto.cs" />
<Compile Include="AnalysisData.cs" />
<Compile Include="BusinessColumn.cs" />
<Compile Include="Chart\DataSourceChart.cs" />
<Compile Include="Chart\DataSourcePoint.cs" />
@@ -309,6 +310,7 @@
<Compile Include="DoorServer\InOutstatisticsItem.cs" />
<Compile Include="DoorServer\t_d_validcardeventItem.cs" />
<Compile Include="DoorServer\t_d_facerecordItem.cs" />
<Compile Include="Enums\DefectTypeEnums.cs" />
<Compile Include="Enums\ActionEnums.cs" />
<Compile Include="ErrorInfo.cs" />
<Compile Include="FaceRecordForm.cs" />
@@ -343,6 +345,10 @@
<Compile Include="APIItem\ResponeData.cs" />
<Compile Include="SpTDesktopItem.cs" />
<Compile Include="Sys_UserDto.cs" />
<Compile Include="ZHGL\DataSync\CHCheckItemOutput.cs" />
<Compile Include="ZHGL\DataSync\WelderOutput.cs" />
<Compile Include="ZHGL\DataSync\WeldDineOutput.cs" />
<Compile Include="ZHGL\DataSync\InspectionManagementOutput.cs" />
<Compile Include="ZHGL\DataSync\AccidentOutput.cs" />
<Compile Include="ZHGL\DataSync\BaseEntities.cs" />
<Compile Include="ZHGL\DataSync\CheckOutput.cs" />
@@ -0,0 +1,20 @@
using System;
namespace Model
{
/// <summary>
/// 焊接信息
/// </summary>
public class CHCheckItemOutput : BaseEntities
{
public string Id { get; set; }
/// <summary>
/// 总片数
/// </summary>
public int? CHT_TotalFilm { get; set; }
/// <summary>
/// 合格片数
/// </summary>
public int? CHT_PassFilm { get; set; }
}
}
@@ -0,0 +1,16 @@
using System;
namespace Model
{
/// <summary>
/// 质量验收数据
/// </summary>
public class InspectionManagementOutput : BaseEntities
{
public string Id { get; set; }
public string BreakdownCode { get; set; }
public string BreakdownName { get; set; }
public string Basis { get; set; }
public string CheckPoints { get; set; }
}
}
@@ -0,0 +1,20 @@
using System;
namespace Model
{
/// <summary>
/// 焊接达因数
/// </summary>
public class WeldDineOutput : BaseEntities
{
public string Id { get; set; }
/// <summary>
/// 达因数
/// </summary>
public decimal? Size { get; set; }
/// <summary>
/// 完成达因数
/// </summary>
public decimal? DoneDin { get; set; }
}
}
@@ -0,0 +1,14 @@
using System;
namespace Model
{
/// <summary>
/// 焊工数据
/// </summary>
public class WelderOutput : BaseEntities
{
public string Id { get; set; }
public string WEDCode { get; set; }
public string WEDName { get; set; }
}
}