2024-04-09 08:17:44 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace InSituLaboratory.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 时序传感器细节表-子表
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class SysSequentialDetails
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 子表主键ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Key]
|
|
|
|
|
|
public int Number { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-04-10 09:50:54 +00:00
|
|
|
|
/// 母表ID
|
2024-04-09 08:17:44 +00:00
|
|
|
|
/// </summary>
|
2024-04-10 09:50:54 +00:00
|
|
|
|
public int SysSquentialID { get; set; }
|
2024-04-09 08:17:44 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-04-10 09:50:54 +00:00
|
|
|
|
/// 配置号
|
2024-04-09 08:17:44 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
2024-04-10 09:50:54 +00:00
|
|
|
|
public string? SequenceGroup { get; set; }
|
2024-04-09 08:17:44 +00:00
|
|
|
|
|
2024-04-10 09:50:54 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 传感器ID
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? SensorID { get; set; }
|
2024-04-09 08:17:44 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-04-10 09:50:54 +00:00
|
|
|
|
/// 工作时长
|
2024-04-09 08:17:44 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
2024-06-28 09:51:00 +00:00
|
|
|
|
public float? WorkTime { get; set; }
|
2024-04-09 08:17:44 +00:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-04-10 09:50:54 +00:00
|
|
|
|
/// 循环时长
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
2024-06-28 09:51:00 +00:00
|
|
|
|
public float? DurationTime { get; set; }
|
2024-04-10 09:50:54 +00:00
|
|
|
|
|
|
|
|
|
|
///// <summary>
|
2024-04-09 08:17:44 +00:00
|
|
|
|
/// 创建时间
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 当前时序
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
|
|
public string? Sequential { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否删除 0-未删除 1-已删除
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
|
|
public int? IsDelete { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[NotMapped]
|
|
|
|
|
|
public int num { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|