public MyResult Get(string token)
 {
     if (string.IsNullOrWhiteSpace(token))
     {
         return(MyResult.Error("参数错误!"));
     }
     CacheHelper.CacheNull(token);
     return(MyResult.OK());
 }