30 lines
719 B
C#
30 lines
719 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FrontendWorkerService.Models
|
|
{
|
|
class OntimeAlarmRawData
|
|
{
|
|
}
|
|
|
|
public class DeviceInfo
|
|
{
|
|
public string building_guid { get; set; }
|
|
public string main_system_guid { get; set; }
|
|
public string sub_system_guid { get; set; }
|
|
public string floor_guid { get; set; }
|
|
public string device_number { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 即時告警前處理資料
|
|
/// </summary>
|
|
public class OntimeAlarmRawDataPreprocess
|
|
{
|
|
public string DeviceNumber { get; set; }
|
|
public string Name { get; set; }
|
|
public string SourceStatus { get; set; }
|
|
}
|
|
}
|