public string Recall(int masterId, int applicationId, string userId)
 {
     try
     {
         var result = _db.SP_PASSINGGOODS_RECALL(masterId, applicationId, userId);
         return("Ok");
     }
     catch (Exception ex)
     {
         LogHelper.Error("PassingGoodsRepository RecallApplication: " + ex.Message + " Inner exception: " + ex.InnerException.Message);
         return(ex.InnerException.Message);
     }
 }