Ejemplo n.º 1
0
        /// <summary>
        /// 评价聚合
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public JsonResult <Result <ProductCommentCountAggregateModel> > GetCommentCountAggregate(long id)
        {
            var data = CommentApplication.GetProductCommentStatistic(shopBranchId: id);

            return(JsonResult(data));
        }
Ejemplo n.º 2
0
        public object  GetCommentCountAggregate(long id)
        {
            var data = CommentApplication.GetProductCommentStatistic(shopBranchId: id);

            return(Json(data));
        }