初始化
This commit is contained in:
30
CommonEntity/LogBase.cs
Normal file
30
CommonEntity/LogBase.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user