44 lines
1.6 KiB
C#
44 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FrontendWorkerService.Models
|
|
{
|
|
class OntimeRawData
|
|
{
|
|
public string device_number { get; set; }
|
|
public string name { get; set; }
|
|
public string value { get; set; }
|
|
public byte is_bool { get; set; }
|
|
}
|
|
|
|
public class OntimeSubscrip
|
|
{
|
|
public string building_guid { get; set; }
|
|
public string main_system_guid { get; set; }
|
|
public string sub_system_guid { get; set; }
|
|
public string device_number { get; set; }
|
|
public string name { get; set; }
|
|
}
|
|
|
|
public class DeviceKind
|
|
{
|
|
public string Device_normal_text { get; set; }
|
|
public string Device_normal_point_name { get; set; }
|
|
public string Device_normal_point_col { get; set; }
|
|
public string Device_normal_point_value { get; set; }
|
|
public byte Device_normal_flashing { get; set; }
|
|
public string Device_close_text { get; set; }
|
|
public string Device_close_point_name { get; set; }
|
|
public string Device_close_point_col { get; set; }
|
|
public string Device_close_point_value { get; set; }
|
|
public byte Device_close_flashing { get; set; }
|
|
public string Device_error_text { get; set; }
|
|
public string Device_error_point_name { get; set; }
|
|
public string Device_error_point_col { get; set; }
|
|
public string Device_error_point_value { get; set; }
|
|
public byte Device_error_flashing { get; set; }
|
|
public byte Device_error_independent { get; set; }
|
|
}
|
|
}
|