namespace Model { 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; } } }