ChengDa_English/SGGL/Model/HJGL/SpRpNDTWeekReport.cs

60 lines
1.0 KiB
C#
Raw Normal View History

2022-03-15 17:36:38 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
/// 无损检测周报/月报
/// </summary>
public class SpRpNDTWeekReport
{
/// <summary>
/// 主键
/// </summary>
public string NDTReportId
{
get;
set;
}
/// <summary>
/// 项目ID
/// </summary>
public string ProjectId
{
get;
set;
}
/// <summary>
/// 项目名称
/// </summary>
public string ProjectName
{
get;
set;
}
/// <summary>
/// 统计时间
/// </summary>
public string StaDate
{
get;
set;
}
/// <summary>
/// 检测单位
/// </summary>
public string CheckUnitName
{
get;
set;
}
}
}