美文网首页
new LambdaUpdateWrapper

new LambdaUpdateWrapper

作者: 盗生一 | 来源:发表于2020-12-18 10:18 被阅读0次
    // 通过身份证更新
        if (CollectionUtils.isNotEmpty(lstUpdateIdCard)) {
            // 更新实有人口编码
            for (PersonInfo personInfo : lstUpdateIdCard) {
                // 根据身份证更新
                try {
                    personService.update(personInfo, new LambdaUpdateWrapper<PersonInfo>().eq(PersonInfo::getIdcard, personInfo.getIdcard()));
                } catch (Exception e) {
                    log.info("更新失败,数据:" + personInfo + "--错误信息:" + e);
                    continue;
                }
            }
    
        }

    相关文章

      网友评论

          本文标题:new LambdaUpdateWrapper

          本文链接:https://www.haomeiwen.com/subject/sddxnktx.html