You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
363 B
C#

using MongoDB.Entities;
namespace Ds.WMS.MogonDb.entity
{
public class ErrorLogDto : Entity
{
public int StatusCode { get; set; }
public string ErrorMessage { get; set; }
public string StackTrace { get; set; }
// 添加其他需要的属性...
public DateTime TimeStamp { get; set; } = DateTime.UtcNow;
}
}