using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.Entities
{
///
/// 时序记录表-总表 供于清单列表查询
///
public class SysSequentialTotal
{
///
/// 时序主键ID
///
[Key]
public int ID { get; set; }
///
/// 开始时间
///
public DateTime? StartTime { get; set; }
///
/// 结束时间
///
public DateTime? EndTime { get; set; }
///
/// 配置号
///
public string? SequenceGroup { get; set; }
///
/// 传感器ID
///
public string? SensorID { get; set; }
///
/// 工作时长
///
public string? WorkTime { get; set; }
///
/// 循环时长
///
public string? DurationTime { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 当前时序
///
public string? Sequential { get; set; }
///
/// 是否删除 0-未删除 1-已删除
///
public int? IsDelete { get; set; }
}
}