You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB
C#

//-----------------------------------------------------------------------
//<copyright>
// * Copyright (C) 2021 KEHAIDASOFT All Rights Reserved
// * version : 4.0.30319.42000
// * author : khd by t4-2
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Khd.Core.Domain.Models
{
[Table("discretealarms")]
public class Discretealarms
{
[Key]
[Column("ID")]
public Guid id { get; set; }
[Column("Alarmtext")]
public string alarmtext { get; set; }
[Column("FieldInfo")]
public string fieldinfo { get; set; }
[Column("Triggertag")]
public string triggertag { get; set; }
[Column("Triggerbit")]
public string triggerbit { get; set; }
[Column("plc_value")]
public string plcValue { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Column("create_time")]
public DateTime? createTime { get; set; }
}
}