2026-03-11 16:30:23 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CommonEntity
|
|
|
|
|
|
{
|
|
|
|
|
|
public struct Kafka_XinTiao
|
|
|
|
|
|
{
|
|
|
|
|
|
public string current_time { get; set; }
|
|
|
|
|
|
public long ts_ms { get; set; }
|
|
|
|
|
|
public string hotel_id { get; set; }
|
|
|
|
|
|
public string device_id { get; set; }
|
|
|
|
|
|
public string room_id { get; set; }
|
2026-03-19 08:56:39 +08:00
|
|
|
|
public string ip { get; set; }
|
2026-03-11 16:30:23 +08:00
|
|
|
|
}
|
2026-03-17 15:58:22 +08:00
|
|
|
|
public struct ShengJi_Log
|
|
|
|
|
|
{
|
|
|
|
|
|
public string hotel_id { get; set; }
|
|
|
|
|
|
public string device_id { get; set; }
|
|
|
|
|
|
public string room_id { get; set; }
|
|
|
|
|
|
public long ts_ms { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int is_send { get; set; }
|
|
|
|
|
|
public byte[] udp_raw { get; set; }
|
|
|
|
|
|
public object extra { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string remote_endpoint { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string md5 { get; set; }
|
|
|
|
|
|
public int partition { get; set; }
|
|
|
|
|
|
public int file_type { get; set; }
|
|
|
|
|
|
public string file_path { get; set; }
|
|
|
|
|
|
public int upgrade_state { get; set; }
|
|
|
|
|
|
public string app_version { get; set; }
|
|
|
|
|
|
}
|
2026-03-11 16:30:23 +08:00
|
|
|
|
}
|