This commit is contained in:
2025-04-07 17:43:30 +08:00
commit 8a2c192129
12175 changed files with 2742596 additions and 0 deletions
@@ -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;
}
}
}