static void GetSequence(int count)
        {
            ISequenceService sequenceService = new RedisSequenceService(options);
            var       sequenceKey            = "PayCode";
            Stopwatch watch          = new Stopwatch();
            var       dateTimeFormat = "yyMMdd";

            watch.Start();
            for (var i = 0; i < count; i++)
            {
                var sequence = sequenceService.GetDaySequence(sequenceKey, dateTimeFormat);
                //Console.WriteLine($"第{(i + 1)}sequence:{sequence}");
                Console.WriteLine(sequence);
            }
            watch.Stop();
            Console.WriteLine($"总用时{watch.ElapsedMilliseconds}毫秒");
        }