|
@@ -21,6 +21,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
21
|
21
|
import org.springframework.web.bind.annotation.*;
|
22
|
22
|
|
23
|
23
|
import javax.servlet.http.HttpServletRequest;
|
|
24
|
+import java.util.List;
|
24
|
25
|
import java.util.Map;
|
25
|
26
|
|
26
|
27
|
/**
|
|
@@ -227,7 +228,7 @@ public class TaThirdPartyMiniappConfigController extends BaseController {
|
227
|
228
|
) {
|
228
|
229
|
// 暂时没有任何校验
|
229
|
230
|
|
230
|
|
- Map<String, Object> res = taShareService.statTopShare("h5_share", h5Id, top);
|
|
231
|
+ List<Map<String, Object>> res = taShareService.statTopShare("h5_share", h5Id, top);
|
231
|
232
|
return ResponseBean.success(res);
|
232
|
233
|
}
|
233
|
234
|
}
|