12 lines
269 B
C#
12 lines
269 B
C#
|
|
using Yitter.IdGenerator;
|
|||
|
|
|
|||
|
|
namespace YY.Admin.Core;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 分布式雪花 Id(依赖应用启动时 SqlSugarSetup 中对 YitIdHelper 的初始化)
|
|||
|
|
/// </summary>
|
|||
|
|
public static class SnowflakeId
|
|||
|
|
{
|
|||
|
|
public static long Next() => YitIdHelper.NextId();
|
|||
|
|
}
|