添加项目文件。
This commit is contained in:
39
EleBox.App/Model/GapData.cs
Normal file
39
EleBox.App/Model/GapData.cs
Normal file
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DynStatDisk.App.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 间隙数据
|
||||
/// </summary>
|
||||
public class GapData
|
||||
{
|
||||
/// <summary>
|
||||
/// 时间ID
|
||||
/// </summary>
|
||||
public string TimeId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 间隙
|
||||
/// </summary>
|
||||
public string Gap { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结论
|
||||
/// </summary>
|
||||
public string Result { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 分组
|
||||
/// </summary>
|
||||
public string Group { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 时间
|
||||
/// </summary>
|
||||
public DateTime Time { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user