Files
Web_BLVLOG_Server_Mvc_Prod/DAL/PGModels/BlockIplog.cs
tianshuanbao 2a7b47cc58 EFCore重新生成
如题
2025-12-17 10:20:16 +08:00

16 lines
280 B
C#

using System;
using System.Collections.Generic;
namespace DAL.PGModels;
public partial class BlockIplog
{
public long Id { get; set; }
public string? Human { get; set; }
public DateTime? CreateTime { get; set; }
public string? BlockContent { get; set; }
}