C00225155-02/C00225155/MegaRobo.C00225155/MegaRobo.C00225155.Entities/Entity-DB/PlcPointDict.cs

36 lines
809 B
C#

using MegaRobo.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MegaRobo.C00225155.Entities.Entity_DB
{
[Table(Comment = "PLC报警点位信息 ", Name = "PlcPointDict")]
public class PlcPointDict
{
/// <summary>
/// 唯一的Guid
/// </summary>
[Column(IsPrimaryKey = true)]
public string Guid { get; set; }
public string Name { get; set; }
public string Key { get; set; }
public short Address { get; set; }
public string ValueTypeName { get; set; }
public int FunType { get; set; }
public int Level { get; set; }
public string Antidote { get; set; }
public string Descr { get; set; }
}
}