| | |
| | | /** |
| | | * 获取用户增量趋势 |
| | | * |
| | | * @param cityIds 城市id集合 |
| | | * @param city 城市id集合 |
| | | * @return 折线图数据 |
| | | */ |
| | | List<UserTrendsVO> userTrends(@Param("ids") List<String> cityIds); |
| | | List<UserTrendsVO> userTrends(@Param("city") List<String> city); |
| | | |
| | | /** |
| | | * 统计本年度,注册用户数量 |
| | | * |
| | | * @param ids 城市id |
| | | * @param cityList 城市集合 |
| | | * @return 注册用户数量 |
| | | */ |
| | | Long increaseNumberByYear(@Param("ids") List<String> ids); |
| | | Long increaseNumberByYear(@Param("cityList") List<String> cityList); |
| | | |
| | | /** |
| | | * 统计本月,注册用户数量 |
| | | * |
| | | * @param cityIdList 城市id |
| | | * @param cityList 城市列表 |
| | | * @return 注册用户数量 |
| | | */ |
| | | Long increaseNumberByMonth(@Param("ids") List<String> cityIdList); |
| | | Long increaseNumberByMonth(@Param("cityList") List<String> cityList); |
| | | } |