| | |
| | | * @param mgtUserIdByKeywordDto |
| | | * @return MgtUserIdByKeywordVo |
| | | */ |
| | | List<Long> getUserIdByKeyword(MgtUserIdByKeywordDto mgtUserIdByKeywordDto); |
| | | List<Long> getUserIdByKeyword(@Param("param")MgtUserIdByKeywordDto mgtUserIdByKeywordDto); |
| | | |
| | | /** |
| | | * @description 总用户数 |
| | |
| | | * @author jqs34 |
| | | * @date 2023/6/18 16:46 |
| | | */ |
| | | Integer memberTotal(); |
| | | Integer memberTotal(@Param("userIds") List<Long> userIds); |
| | | |
| | | /** |
| | | * @description 今日新增用户数 |
| | |
| | | * @author jqs34 |
| | | * @date 2023/6/18 16:47 |
| | | */ |
| | | Integer memberToday(); |
| | | Integer memberToday(@Param("userIds") List<Long> userIds); |
| | | |
| | | |
| | | /** |
| | |
| | | * @return Integer |
| | | */ |
| | | Integer getAreaNewMember(@Param("shopIdList")List<Long> shopIdList); |
| | | |
| | | /** |
| | | * @description 获取今日生日用户电话 |
| | | * @author jqs |
| | | * @date 2023/8/7 16:13 |
| | | * @param |
| | | * @return List<String> |
| | | */ |
| | | List<Member> listTodayBirthday(); |
| | | } |
| | | |
| | | |