dc/MQ/body/AlarmReportBody.cs
13118993771@163.com 562bd7a7b8 新版
2023-02-23 11:33:23 +08:00

39 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#region << >>
/*----------------------------------------------------------------
* 创建者Hupe
* 创建时间2021/10/19 16:26:51
* 版本V1.0.0
* 描述:
* ----------------------------------------------------------------
* 修改人:
* 时间:
* 修改说明:
* 版本V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class AlarmReportBody
{
private string _eventTimestamp;
public string spoolingFlag;
public string alarmCode;
public string alarmStatus;
public string alarmCategory;
public string alarmText;
public string eventTimestamp
{
get { return _eventTimestamp; }
set { _eventTimestamp = DateTime.Parse(value).ToString("s"); }
}
}
}