修改了目录架构

This commit is contained in:
2025-09-16 12:29:09 +08:00
parent 5ab18f95f0
commit ffa24f861e
74 changed files with 122 additions and 123 deletions

View File

@@ -0,0 +1,33 @@
namespace DMS.Core.Enums
{
/// <summary>
/// 数据变更类型枚举
/// </summary>
public enum DataChangeType
{
/// <summary>
/// 添加
/// </summary>
Added,
/// <summary>
/// 更新
/// </summary>
Updated,
/// <summary>
/// 删除
/// </summary>
Deleted,
/// <summary>
/// 加载
/// </summary>
Loaded,
/// <summary>
/// 批量操作
/// </summary>
BatchOperation
}
}