public ActionResult OpenStore(params int[] storeId)
        {
            if (storeId == null || storeId.Length <= 0)
            {
                return(Json(OperationResult.Error("参数错误")));
            }
            var res = _storeContract.OpenStore(storeId);

            return(Json(res));
        }