public ActionResult Create(ShipTypeInfo stockInfo) { stockInfo.MerchantSysNo = UserAuthHelper.GetCurrentUser().SellerSysNo; var success = ShipTypeService.Create(stockInfo); return(Json(new { Success = success, Msg = success ? LanguageHelper.GetText("操作成功") : LanguageHelper.GetText("操作失败,请稍候再试") })); }