Files
Web_BLVLOG_Server_Mvc_Prod/DAL/PGModels/StatisticsTotal.cs

22 lines
401 B
C#
Raw Normal View History

2025-11-20 16:20:04 +08:00
using System;
using System.Collections.Generic;
namespace DAL.PGModels;
public partial class StatisticsTotal
{
public long Id { get; set; }
public string? HotelCode { get; set; }
public int? TxCount { get; set; }
public string? HostNumber { get; set; }
public string? Mac { get; set; }
public int? RxCount { get; set; }
public string? UpdateTime { get; set; }
}