EFCore重新生成

如题
This commit is contained in:
tianshuanbao
2025-12-17 10:20:16 +08:00
parent 9deea4b3e9
commit 2a7b47cc58
17 changed files with 585 additions and 121 deletions

View File

@@ -0,0 +1,21 @@
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; }
}