Commit 6417c0e1 by guojuxing

消费构成-等级-等级段

parent e93b1e89
......@@ -47,6 +47,12 @@ public class ConsumeStructureController {
return ResultControllerUtils.commonResult(consumeStructureApiService.queryAgeConsumeSurvey(params));
}
@RequestMapping("get-age-consume-group")
public RestResponse listAgeConsumeGroup(AgeConsumeAreaQO params) {
log.info("消费构成-消费年龄-年龄段参数:{}", JSON.toJSONString(params));
return ResultControllerUtils.commonResult(consumeStructureApiService.listAgeConsumeGroup(params));
}
@RequestMapping("get-age-consume-area")
public RestResponse queryAgeConsumeArea(AgeConsumeAreaQO params) {
log.info("消费构成-消费年龄-区域参数:{}", JSON.toJSONString(params));
......@@ -88,6 +94,12 @@ public class ConsumeStructureController {
return ResultControllerUtils.commonResult(consumeStructureApiService.pageGradeConsumeArea(params));
}
@RequestMapping("get-grade-consume-group")
public RestResponse queryAgeConsumeShare(GradeConsumeAreaQO params) {
log.info("消费构成-等级-等级段参数:{}", JSON.toJSONString(params));
return ResultControllerUtils.commonResult(consumeStructureApiService.listGradeConsumeGroup(params));
}
@RequestMapping("get-birth-consume-rate")
public RestResponse getBirthConsumeRate(BirthConsumeRateQO params) {
log.info("消费构成-生日会员-占比参数:{}", JSON.toJSONString(params));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment