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

27 lines
577 B
C#
Raw Normal View History

2024-07-24 13:30:21 +00:00
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; }
}
}