1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| @Api(tags = "行业分析")
@ApiOperation(value = "3 区域分析下钻") @ApiImplicitParams({ @ApiImplicitParam(name = "market", value = "market", defaultValue = "ios", allowableValues = "ios,google-play", paramType = "query", dataType = "String"), @ApiImplicitParam(name = "category", value = "游戏品类", defaultValue = "Card", paramType = "query", dataType = "String"), @ApiImplicitParam(name = "games", value = "全部游戏/新游戏", defaultValue = "all", allowableValues = "all,new", paramType = "query", dataType = "String"), @ApiImplicitParam(name = "feeds", value = "下载/收入", allowableValues = "download,revenue", defaultValue = "revenue", paramType = "query", dataType = "String"), @ApiImplicitParam(name = "sort_by", value = "增长值/绝对值", allowableValues = "changeInValue,value", defaultValue = "value", paramType = "query", dataType = "String"), @ApiImplicitParam(name = "start_date", value = "开始日期", defaultValue = "2020-09-01", paramType = "query", dataType = "String"), @ApiImplicitParam(name = "end_date", value = "结束日期", defaultValue = "2020-09-01", paramType = "query", dataType = "String"), @ApiImplicitParam(name = "region", value = "地区", defaultValue = "CN", paramType = "query", dataType = "String"), })
|