41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CommonEntity
|
|
{
|
|
/// <summary>
|
|
/// ts 日志
|
|
/// </summary>
|
|
public class NewVersionLog
|
|
{
|
|
public string hotel_id { get; set; }
|
|
public string room_id { get; set; }
|
|
public string device_id { get; set; }
|
|
public string ip { get; set; }
|
|
|
|
public int power_state { get; set; }
|
|
public int guest_type { get; set; }
|
|
public int cardless_state { get; set; }
|
|
public ulong service_mask { get; set; }
|
|
public int pms_state { get; set; }
|
|
public int carbon_state { get; set; }
|
|
public int device_count { get; set; }
|
|
public int comm_seq { get; set; }
|
|
public long ts_ms { get; set; }
|
|
|
|
public extra_data extra { get; set; }
|
|
|
|
}
|
|
public class extra_data
|
|
{
|
|
public byte[] original_byte { get; set; }
|
|
public string source { get; set; }
|
|
public string ver { get; set; }
|
|
public object ac { get; set; }
|
|
public object meter { get; set; }
|
|
}
|
|
}
|