LMS.service/LMS.Repository/DB/ApiEndpoints.cs

23 lines
490 B
C#
Raw Normal View History

using LMS.Common.Extensions;
2024-10-13 17:04:47 +08:00
namespace LMS.Repository.Models.DB
{
public class ApiEndpoints
{
public string Id { get; set; }
public string HttpMethod { get; set; }
public string Path { get; set; }
public DateTime CreateTime { get; set; } = BeijingTimeExtension.GetBeijingTime();
public List<string> RequiredPermissionIds { get; set; }
public long CreatedId { get; set; }
public long UpdatedId { get; set; }
}
}