| 123456789101112131415161718192021 |
- namespace ETModel
- {
- public static class IdGenerater
- {
- public static long AppId { private get; set; }
- private static ushort value;
- public static long GenerateId()
- {
- long time = TimeHelper.ClientNowSeconds();
- return (AppId << 48) + (time << 16) + ++value;
- }
- public static int GetAppIdFromId(long id)
- {
- return (int)(id >> 48);
- }
- }
- }
|