22 lines
424 B
C#
22 lines
424 B
C#
using System;
|
|||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JY.Inspection.Entity
|
||
|
|
{
|
||
|
|
public class AlarmStatus
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 报警地址
|
||
|
|
/// </summary>
|
||
|
|
public string PLCAdress { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 报警状态
|
||
|
|
/// </summary>
|
||
|
|
public bool Status { get; set; }
|
||
|
|
}
|
||
|
|
}
|