From a8d2cb07f6440dc54dc4005b0b06d5a47cb1517d Mon Sep 17 00:00:00 2001 From: luodangjia <luodangjia> Date: 星期一, 16 十二月 2024 13:34:03 +0800 Subject: [PATCH] 12.16 --- ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/AppUserController.java | 151 +++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 141 insertions(+), 10 deletions(-) diff --git a/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/AppUserController.java b/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/AppUserController.java index d84d818..f06387c 100644 --- a/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/AppUserController.java +++ b/ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/AppUserController.java @@ -2,19 +2,21 @@ import com.baomidou.mybatisplus.core.metadata.IPage; -import com.ruoyi.account.api.model.AppUser; -import com.ruoyi.account.api.model.UserCancellationLog; -import com.ruoyi.account.api.model.UserCoupon; -import com.ruoyi.account.api.model.UserSignRecord; -import com.ruoyi.account.service.AppUserService; -import com.ruoyi.account.service.UserCancellationLogService; -import com.ruoyi.account.service.UserCouponService; -import com.ruoyi.account.service.UserSignRecordService; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.ruoyi.account.api.model.*; +import com.ruoyi.account.dto.DangerInfoDto; +import com.ruoyi.account.service.*; import com.ruoyi.common.core.domain.R; +import com.ruoyi.common.core.utils.bean.BeanUtils; import com.ruoyi.common.core.web.domain.AjaxResult; import com.ruoyi.common.security.service.TokenService; +import com.ruoyi.order.feignClient.RemoteOrderGoodsClient; +import com.ruoyi.order.model.Order; import com.ruoyi.other.api.domain.Shop; +import com.ruoyi.other.api.domain.VipSetting; +import com.ruoyi.other.api.feignClient.ShopClient; import com.ruoyi.other.api.feignClient.StoreClient; +import com.ruoyi.other.api.feignClient.VipSettingClient; import io.swagger.annotations.*; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; @@ -23,6 +25,7 @@ import javax.annotation.Resource; import java.time.LocalDate; +import java.util.ArrayList; import java.util.List; import com.ruoyi.account.vo.*; @@ -56,6 +59,12 @@ @Resource private UserSignRecordService userSignRecordService; + @Resource + private VipSettingClient vipSettingClient; + @Resource + private UserPointService userPointService; + @Resource + private VipSettingService vipSettingService; @ResponseBody @@ -85,6 +94,18 @@ public R<Void> editAppUserById(@RequestBody AppUser appUser) { appUserService.updateById(appUser); return R.ok(); + + } + + @ResponseBody + @PostMapping("/getTopUsers") + public R<List<AppUser>> getTopUsers(@RequestBody AppUser appUser) { + List<Integer> vipIds = new ArrayList<>(); + vipIds.add(5); + vipIds.add(6); + vipIds.add(7); + List<AppUser> list = appUserService.lambdaQuery().in(AppUser::getVipId, vipIds).list(); + return R.ok(list); } @@ -332,7 +353,7 @@ * 获取用户列表 */ @GetMapping("/getAppuserPage") - @ApiOperation(value = "用户列表", tags = {"后台管理"}) + @ApiOperation(value = "用户列表", tags = {"管理后台"}) public R<IPage<AppUser>> getAppuserPage(@ApiParam("页码") @RequestParam Integer pageNum, @ApiParam("每一页数据大小") Integer pageSize, AppUser appUser) @@ -341,9 +362,118 @@ return R.ok(appuserPage); } + @GetMapping("/danger/info") + @ApiOperation(value = "用户列表-保级条件详情", tags = {"管理后台"}) + public R<DangerInfoDto> dangerinfo(Long id) + { + AppUser byId = appUserService.getById(id); + LocalDate now = LocalDate.now(); + R<VipSetting> vipSetting = vipSettingClient.getVipSetting(byId.getVipId()); + VipSetting data = vipSetting.getData(); + DangerInfoDto dangerInfoDto = new DangerInfoDto(); + BeanUtils.copyProperties(data,dangerInfoDto); + List<UserPoint> list1 = userPointService.lambdaQuery().eq(UserPoint::getType,1).ge(UserPoint::getCreateTime, now.minusDays(data.getKeepBuyDay())).list(); + List<UserPoint> list2 = userPointService.lambdaQuery().eq(UserPoint::getType,2).ge(UserPoint::getCreateTime, now.minusDays(data.getKeepBuyDay())).list(); + List<UserPoint> list3 = userPointService.lambdaQuery().eq(UserPoint::getType,5).ge(UserPoint::getCreateTime, now.minusDays(data.getKeepBuyDay())).list(); + Integer userKeepBuyPoint = 0; + for (UserPoint userPoint : list1) { + userKeepBuyPoint = userPoint.getVariablePoint()+userKeepBuyPoint; + } + Integer userKeepSharePoint = 0; + for (UserPoint userPoint : list2) { + userKeepSharePoint = userPoint.getVariablePoint()+userKeepSharePoint; + } + Integer userKeepShopPoint = 0; + for (UserPoint userPoint : list3) { + userKeepShopPoint = userPoint.getVariablePoint()+userKeepShopPoint; + } + dangerInfoDto.setUserKeepBuyPoint(userKeepBuyPoint); + dangerInfoDto.setUserKeepSharePoint(userKeepSharePoint); + dangerInfoDto.setUserKeepShopPoint(userKeepShopPoint); + return R.ok(dangerInfoDto); + } + + + @GetMapping("/danger/down") + @ApiOperation(value = "用户列表-保级条件降级", tags = {"管理后台"}) + public R down(Long id) + { + AppUser byId = appUserService.getById(id); + byId.setVipId(byId.getVipId()-1); + appUserService.updateById(byId); + //执行降级标记代码 + new Thread(new Runnable() { + @Override + public void run() { + { + vipSettingService.downUsers(); + } + } + } + ).start(); + return R.ok(); + } + @GetMapping("/frozen") + @ApiOperation(value = "用户列表-冻结解冻", tags = {"管理后台"}) + public R frozen(Long id,@ApiParam("1=正常,2=冻结")Integer status) + { + AppUser byId = appUserService.getById(id); + byId.setStatus(status); + appUserService.updateById(byId); + return R.ok(); + } + @Resource + private ShopClient shopClient; + @Resource + private RemoteOrderGoodsClient remoteOrderGoodsClient; + + @GetMapping("/detail") + @ApiOperation(value = "用户列表-详情", tags = {"管理后台"}) + public R<AppUser> detail(Long id) + { + AppUser byId = appUserService.getById(id); + if (byId.getShopId()!=null) { + R<Shop> shopById = shopClient.getShopById(Integer.parseInt(String.valueOf(byId.getShopId()))); + if (shopById.getData()!=null) { + byId.setShopName(shopById.getData().getName()); + } + } + R<List<Shop>> shopByUserId = shopClient.getShopByUserId(id); + if (shopByUserId.getData()!=null) { + List<String> shopName = new ArrayList<>(); + for (Shop datum : shopByUserId.getData()) { + shopName.add(datum.getName()); + } + byId.setShopNames(shopName); + } + //推广人 + if (byId.getInviteUserId()!=null) { + AppUser byId1 = appUserService.getById(byId.getInviteUserId()); + byId1.setInviteUserName(byId1.getInviteUserName()); + } + //最后下单时间 + R<Order> lastOrder = remoteOrderGoodsClient.getLastOrder(id); + if (lastOrder.getData()!=null){ + byId.setLastOrderTime(lastOrder.getData().getCreateTime()); + } + return R.ok(byId); + } + @GetMapping("/bottom") + @ApiOperation(value = "用户列表-绑定下级列表", tags = {"管理后台"}) + public R<Page<AppUser>> bottom(Long id,Integer pageNum,Integer pageSize) + { + //绑定下级 + Page<AppUser> page = appUserService.lambdaQuery().eq(AppUser::getInviteUserId, id).page(Page.of(pageNum, pageSize)); + return R.ok(page); + + } + + + + + @GetMapping("/getAppUserByPhone") - @ApiOperation(value = "根据手机号获取用户信息",tags = {"后台管理-门店管理-通过手机号校验用户是否存在"}) public R<AppUser> getAppUserByPhone(String phone){ AppUser appUser = appUserService.lambdaQuery().eq(AppUser::getPhone, phone).one(); return R.ok(appUser); @@ -351,5 +481,6 @@ + } -- Gitblit v1.7.1