1
0
mirror of synced 2025-12-19 11:38:02 +08:00
Files
SnowFlake-IdGenerator/Delphi/source/Contract/uIIdGenerator.pas
2022-10-17 11:34:58 +08:00

17 lines
250 B
ObjectPascal

unit uIIdGenerator;
interface
type
IIdGenerator = interface
['{C4E773E0-6E3E-410D-9F01-0826BA57BFF0}']
/// <summary>
/// 生成新的Int64型Id
/// </summary>
function NewLong(): Int64;
end;
implementation
end.