jy-plc/Command/Model/EntityModel/Alert.cs

27 lines
577 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LangGuan.Command.Model.EntityModel
{
/// <summary>
/// 报警
/// </summary>
public class Alert : BaseModel
{
/// <summary>
/// deviceId
/// </summary>
public string deviceId { get; set; }
/// <summary>
/// 别名
/// </summary>
public string NickName { get; set; }
/// <summary>
/// 内容
/// </summary>
public string content { get; set; }
}
}