IdGenerater.cs 282 B

12345678910111213141516
  1. namespace Model
  2. {
  3. public static class IdGenerater
  4. {
  5. public static long AppId { private get; set; }
  6. private static ushort value;
  7. public static long GenerateId()
  8. {
  9. long time = TimeHelper.ClientNowSeconds();
  10. return (AppId << 48) + (time << 16) + ++value;
  11. }
  12. }
  13. }