17 lines
385 B
C#
17 lines
385 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|