Lambda简化条件语句(让代码更优雅)
1. LambdaQueryWrapper 条件查询List<ProductInfoEntity> productInfoList = productInfoMapper.selectList(new LambdaQueryWrapper<ProductInfoEntity>().eq(ProductInfoEntity::getId, id).eq(ProductInfoEntity::getState, 1));2. LambdaQue