예제 #1
0
        public async Task <IActionResult> AddShopSku(ShopSkuEntity entity)
        {
            if (ModelState.IsValid)
            {
                var data = await shopService.AddShopSku(entity);

                return(Json(data));
            }
            return(Json(ParrNoPass()));
        }