数据穿透

This commit is contained in:
2023-06-09 14:28:23 +08:00
parent 72f0109f93
commit 1c8c630c21
13 changed files with 362 additions and 106 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;
}
}
}