This commit is contained in:
2023-08-04 17:07:06 +08:00
133 changed files with 4486 additions and 1325 deletions
+9
View File
@@ -38,6 +38,15 @@ namespace Model
set;
}
/// <summary>
/// 季度
/// </summary>
public int? Quarter
{
get;
set;
}
/// <summary>
///
/// </summary>
+47
View File
@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class QualityAcceptanceItem
{
/// <summary>
///
/// </summary>
public string InspectionDetailId
{
get;
set;
}
/// <summary>
///
/// </summary>
public string ProjectId
{
get;
set;
}
/// <summary>
///
/// </summary>
public string CheckAcceptType
{
get;
set;
}
/// <summary>
///
/// </summary>
public bool? IsOnceQualified
{
get;
set;
}
}
}
+818 -72
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -179,6 +179,7 @@
<Compile Include="CQMS\CheckItem.cs" />
<Compile Include="CQMS\FileCabinetItem.cs" />
<Compile Include="CQMS\NDTCheckItem.cs" />
<Compile Include="CQMS\QualityAcceptanceItem.cs" />
<Compile Include="CQMS\WelderItem.cs" />
<Compile Include="ErrorInfo.cs" />
<Compile Include="HandleStep.cs" />