| | |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | import com.panzhihua.common.model.dtos.DataKanBansDto; |
| | | import com.panzhihua.common.model.dtos.community.convenient.ConvenientMerchantDTO; |
| | | import com.panzhihua.common.model.dtos.community.convenient.DisableOrEnableConvenientMerchantDTO; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | @GetMapping("resetPassword") |
| | | public R resetPassword(@RequestParam("userId") Long userId) { |
| | | return userService.resetPassword(userId); |
| | | } |
| | | |
| | | /** |
| | | * 批量重置密码 |
| | | * |
| | | * @param userId |
| | | * 新密码 |
| | | * @return 修改结果 |
| | | */ |
| | | @GetMapping("resetPasswordPatch") |
| | | public R resetPasswordPatch(@RequestParam("userIds") Long[] userId,@RequestParam("password")String password) { |
| | | return userService.resetPasswordPatch(userId,password); |
| | | } |
| | | |
| | | /** |
| | |
| | | public R disableOrEnableMerchantUsers(@RequestBody DisableOrEnableConvenientMerchantDTO disableOrEnableConvenientMerchantDTO) { |
| | | return userService.disableOrEnableMerchantUsers(disableOrEnableConvenientMerchantDTO); |
| | | } |
| | | |
| | | /** |
| | | * 根据openid维护社区团队里是否注册 |
| | | * @param openid 用户微信唯一标识 |
| | | */ |
| | | @PostMapping("judgeCommunityTeam") |
| | | public void judgeCommunityTeam(@RequestParam("openid") String openid) { |
| | | userService.judgeCommunityTeam(openid); |
| | | } |
| | | |
| | | /** |
| | | * 数据看板升级版 |
| | | * |
| | | * @return 运营后台数据看板升级版 |
| | | */ |
| | | @PostMapping("datakanbans") |
| | | public R dataKanBans(@RequestBody DataKanBansDto dataKanBansDto) { |
| | | return userService.dataKanBans(dataKanBansDto); |
| | | } |
| | | |
| | | /** |
| | | * 运营后台-用户数据统计汇总 |
| | | * @return 用户数据统计汇总 |
| | | */ |
| | | @GetMapping("community/statistics") |
| | | public R communityStatistics() { |
| | | return userService.communityStatistics(); |
| | | } |
| | | |
| | | @GetMapping("community/statistics/export") |
| | | public R communityStatisticsExport() { |
| | | return userService.communityStatisticsExport(); |
| | | } |
| | | } |