Files
Web_BLSKafka_Server_Prod/DAL/New_Models/RegisterLog.cs
2025-11-21 08:48:01 +08:00

18 lines
313 B
C#

using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class RegisterLog
{
public int Id { get; set; }
public int? HostId { get; set; }
public string? HotelCode { get; set; }
public string? Mac { get; set; }
public string? CreateTime { get; set; }
}