修改穿透页面

This commit is contained in:
2023-06-09 07:45:49 +08:00
parent a82f96f3d2
commit 10d032e347
3 changed files with 68 additions and 30 deletions
+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;
}
}
}