初始化

This commit is contained in:
2025-11-21 08:48:01 +08:00
commit b4d684a84c
202 changed files with 28585 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MessagePack;
using MongoDB.Bson;
namespace CommonEntity
{
[MessagePackObject()]
public class NewVersionHexData
{
[Key(0)]
public byte CmdType { get; set; }
[Key(1)]
public string? HotelCode { get; set; }
[Key(2)]
public string? HostNumber { get; set; }
[Key(3)]
public string? RoomNumber { get; set; }
[Key(4)]
public string? RemoteEndPoint { get; set; }
[Key(5)]
public string? HexData { get; set; }
[Key(6)]
public DateTime CurrentTime { get; set; }
}
public class NewVersionHexData_db
{
public ObjectId _id { get; set; }
public byte CmdType { get; set; }
public string? HotelCode { get; set; }
public string? HostNumber { get; set; }
public string? RoomNumber { get; set; }
public string? RemoteEndPoint { get; set; }
public string? HexData { get; set; }
public DateTime CurrentTime { get; set; }
public List<Dictionary<string, string>>? Data { get; set; }
}
}