LMS.service/LMS.Repository/DB/ApiEndpoints.cs
lq1405 a37c40a2ef V1.0.6
添加重置用户每月的免费换绑次数
优化项目结构
2025-03-24 16:53:32 +08:00

23 lines
490 B
C#

using LMS.Common.Extensions;
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; }
}
}