16 lines
266 B
C#
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; }
|
|
}
|