62 lines
1.3 KiB
C#
62 lines
1.3 KiB
C#
|
|
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>
|
|||
|
|
/// 传感器ID
|
|||
|
|
/// </summary>
|
|||
|
|
public string? SensorID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 循环时长
|
|||
|
|
/// </summary>
|
|||
|
|
|
|||
|
|
public string? DurationTime { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 母表ID
|
|||
|
|
/// </summary>
|
|||
|
|
public int SysSquentialID { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 创建时间
|
|||
|
|
/// </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; }
|
|||
|
|
}
|
|||
|
|
}
|