租户新增或编辑窗口,增加所属客户行,类似于隐患点Ids 功能

  1.通过 `tenant_info `表的 customer_id(对应`custom_info`表的主键id)来l获取每个租户的 id

  2.拿着id到 `custom_info`表获取具体的客户对象

  3.通过获取到的客户对象拿到具体的客户名,具体实现如下:

   @AutoLog(value = "tenant_info-分页列表查询")
    @ApiOperation(value = "tenant_info-分页列表查询", notes = "tenant_info-分页列表查询")
    @GetMapping(value = "/list")
    public Result<IPage<TenantInfo>> queryPageList(TenantInfo tenantInfo,
                                                   @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
                                                   @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
                                                   HttpServletRequest req) {
        QueryWrapper<TenantInfo> queryWrapper = QueryGenerator.initQueryWrapper(tenantInfo, req.getParameterMap());
        Page<TenantInfo> page = new Page<TenantInfo>(pageNo, pageSize);
        IPage<TenantInfo> pageList = tenantInfoService.page(page, queryWrapper);
        pageList.getRecords().forEach(item -> {
            if (item.getMonitorPonitIds() != null && item.getMonitorPonitIds().length() > 0) {
                List<String> monitorIds = Arrays.asList(item.getMonitorPonitIds().split("\\|"));
                List<@NotNull(message = "隐患点名称不能为空") String> monitorPointNames = monitorPointService
                        .listByIds(monitorIds)
                        .stream()
                        .map(MonitorPoint::getMonitorPointName)
                        .collect(Collectors.toList());
                String newMonitorPointNameStr = Joiner.on(" | ").join(monitorPointNames);
                item.setMonitorPointNames(newMonitorPointNameStr);
            }
            CustomerInfo customInfo = customInfoService.getById(item.getCustomerId());
            String customerName=null;
            if (!ObjectUtils.isEmpty(customInfo)){
                customerName = customInfo.getCustomerName();
                if (!ObjectUtils.isEmpty(customerName)){
                    item.setCustomerName(customerName);
                }
            }
        });
        return Result.OK(pageList);
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值