You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
509 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Module.Hsms.Model
{
/// <summary>
/// HOST创建的事件参数信息
/// </summary>
public class HsmsEapCEID
{
/// <summary>
/// 事件ID
/// </summary>
public UInt32 CEID { get; set; }
/// <summary>
/// 数据报告ID列表
/// </summary>
public List<UInt32> LIST_RPTID { get; set; }
}
}