feat: 关闭前端动画

This commit is contained in:
chenchun
2025-07-04 19:13:21 +08:00
parent a70dfb0769
commit 6d8a859b20
4 changed files with 54 additions and 11 deletions

View File

@@ -0,0 +1,29 @@
namespace Yi.Framework.Rbac.Domain.Shared.Caches;
public class FileCacheItem
{
public Guid Id { get; set; }
/// <summary>
/// 文件大小
///</summary>
public decimal FileSize { get; set; }
/// <summary>
/// 文件名
///</summary>
public string FileName { get; set; }
/// <summary>
/// 文件路径
///</summary>
public string FilePath { get; set; }
public DateTime CreationTime { get; set; }
public Guid? CreatorId { get; set; }
public Guid? LastModifierId { get; set; }
public DateTime? LastModificationTime { get; set; }
}