25 lines
536 B
C#
25 lines
536 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 检验检查完成时间统计
|
|
/// </summary>
|
|
public class InspectionStaisicsModel
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string InspectionType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据集合
|
|
/// </summary>
|
|
public List<DoubleDataSetModel> InspectionList{ get; set; }
|
|
}
|
|
}
|