private void asyncCreateMessage(SubmitPraize submitPraize, long praizeId)
 {
     Task.Run(() =>
     {
         try
         {
             _messageServices.CreateNotification_Praize(new MsgSubmitPraize
             {
                 SubmitPraize = submitPraize,
                 PraizeId     = praizeId,
             });
         }
         catch (Exception msgEx)
         {
             NLogUtil.cc_ErrorTxt("【点赞通知】错误:" + msgEx.Message);
         }
     });
 }