20230201_145_upperpc/InSituLaboratory.Models/RecordModel.cs

28 lines
607 B
C#
Raw Permalink Normal View History

2024-04-09 08:17:44 +00:00
using Prism.Mvvm;
using System;
2024-03-30 00:17:37 +00:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.Models
{
2024-04-09 08:17:44 +00:00
/// <summary>
/// 时序记录表
/// </summary>
2024-03-30 00:17:37 +00:00
public class RecordModel
{
2024-04-09 08:17:44 +00:00
public DateTime StartTime { get; set; }
public DateTime EndTime { get; set; }
2024-03-30 00:17:37 +00:00
public int Number { get; set; }
public string SensorID { get; set; }
2024-04-09 08:17:44 +00:00
2024-03-30 00:17:37 +00:00
public string DurationTime { get; set; }
2024-04-09 08:17:44 +00:00
public DateTime CreateTime { get; set; }
public string Sequential { get; set; }
2024-03-30 00:17:37 +00:00
}
}