public void Handle(SetNoticeApiMahuaCommand message)
        {
            var setNoticeResult = _qqGroupApi.SetNotice(new SetNoticeInput
            {
                Bkn   = _mahuaApi.GetBkn(),
                Qid   = message.ToGroup,
                Title = message.Title,
                Text  = message.Content
            })
                                  .GetAwaiter()
                                  .GetResult();

            LogProvider.For <SetNoticeApiMahuaCommandHandler>().Debug(JsonConvert.SerializeObject(setNoticeResult));
        }