17 lines
563 B
C#
17 lines
563 B
C#
namespace YY.Admin.Core.Sync;
|
|
|
|
/// <summary>
|
|
/// 桌面→后端用户反同步在 Outbox 中的聚合类型常量。
|
|
/// 走 /sys/sync/batch 而非本地拉取路径。
|
|
/// </summary>
|
|
public static class SysUserSyncOutbox
|
|
{
|
|
public const string AggregateType = "SYS_USER";
|
|
|
|
public const string EventCreate = "CREATE";
|
|
public const string EventUpdate = "UPDATE";
|
|
public const string EventToggleStatus = "TOGGLE_STATUS";
|
|
public const string EventDelete = "DELETE";
|
|
public const string EventBatchDelete = "BATCH_DELETE";
|
|
}
|