namespace YY.Admin.Core.Sync; /// /// 桌面→后端用户反同步在 Outbox 中的聚合类型常量。 /// 走 /sys/sync/batch 而非本地拉取路径。 /// 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"; }