初始化

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

30
CommonEntity/LogBase.cs Normal file
View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MongoDB.Bson;
using static System.Runtime.InteropServices.JavaScript.JSType;
namespace CommonEntity
{
public class LogBase
{
public ObjectId _id { get; set; }
public string? MessageId { get; set; }
public string HotelCode { get; set; }
public string RoomNum { get; set; }
public string MessageType { get; set; }
public DataContext Context { get; set; }
public DateTime CreateDateTime { get; set; }
}
public class DataContext
{
public string Data { get; set; }
public int Age { get; set; }
}
}