/// <summary>
        /// 取门店商品数量
        /// </summary>
        /// <param name="shopBranchId"></param>
        /// <param name="startDate"></param>
        /// <param name="endDate"></param>
        /// <returns></returns>
        public static IEnumerable <ShopBranchSkusInfo> GetShopBranchProductCount(long shopBranchId, DateTime?startDate, DateTime?endDate)
        {
            var skus = _shopBranchService.SearchShopBranchSkus(shopBranchId, startDate, endDate);

            return(skus);
        }