|
|
@@ -308,14 +308,13 @@ public class HlwPaymentDetailController extends JeecgController<HlwPaymentDetail
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 获取首页上方中间用户总数
|
|
|
*/
|
|
|
@AutoLog(value = "获取首页上方中间用户总数")
|
|
|
@ApiOperation(value = "获取首页上方中间用户总数", notes = "获取首页上方中间用户总数")
|
|
|
@GetMapping(value = "/getIndexTopTotalUser")
|
|
|
- public Result<?> getIndexTopTotalUser( @RequestParam(name = "beforeTotalUser", required = true) String beforeTotalUser) {
|
|
|
+ public Result<?> getIndexTopTotalUser(@RequestParam(name = "beforeTotalUser", required = true) String beforeTotalUser) {
|
|
|
//存放返回数据结果
|
|
|
List list = new ArrayList();
|
|
|
int totalUser = hlwUserMapper.findSumUser();
|
|
|
@@ -326,17 +325,17 @@ public class HlwPaymentDetailController extends JeecgController<HlwPaymentDetail
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 获取首页右上企业总数
|
|
|
*/
|
|
|
@AutoLog(value = "获取首页右上企业总数")
|
|
|
@ApiOperation(value = "获取首页右上企业总数", notes = "获取首页右上企业总数")
|
|
|
@GetMapping(value = "/getIndexTopTotalCompany")
|
|
|
- public Result<?> getIndexTopTotalCompany( @RequestParam(name = "beforeTotalCompany", required = true) String beforeTotalCompany) {
|
|
|
+ public Result<?> getIndexTopTotalCompany(@RequestParam(name = "beforeTotalCompany", required = true) String beforeTotalCompany) {
|
|
|
//存放返回数据结果
|
|
|
List list = new ArrayList();
|
|
|
int totalCompany = hlwCompanyMapper.findTotalCompany();
|
|
|
+ list.add(totalCompany);
|
|
|
//企业数增长
|
|
|
list.add(totalCompany - Integer.parseInt(beforeTotalCompany));
|
|
|
return Result.ok(list);
|
|
|
@@ -389,8 +388,6 @@ public class HlwPaymentDetailController extends JeecgController<HlwPaymentDetail
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
/**
|
|
|
* 获取首页中间新增用户(周、月)及占比
|
|
|
*/
|