|
@@ -32,6 +32,19 @@ public class ScreenController {
|
|
|
@Autowired
|
|
|
ResultUtils resultUtils;
|
|
|
|
|
|
+ /**
|
|
|
+ * 2021-04-21
|
|
|
+ * 新增接口
|
|
|
+ */
|
|
|
+ @ApiOperation("积分商城-积分兑换统计")
|
|
|
+ @GetMapping("shopPoint/{code}")
|
|
|
+ public Result shopPoint(@PathVariable String code) {
|
|
|
+ String apiUrl = "/open/api/v1/community/shop-point";
|
|
|
+ HashMap<String, Object> param = new HashMap<>();
|
|
|
+ param.put("code", code);
|
|
|
+ return resultUtils.doGetResult(apiUrl, param);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
@ApiOperationSupport(order=1)
|
|
|
@ApiOperation("街道概况-街道人员组成、房屋信息")
|