ChouBox/ChouBox.Model/Entities/ErrorLog.cs
2025-04-23 19:20:23 +08:00

16 lines
266 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
public partial class ErrorLog
{
public int Id { get; set; }
public int UserId { get; set; }
public int GoodsId { get; set; }
public int Addtime { get; set; }
}