参考:https://blog.csdn.net/qq_36614559/article/details/80354511

 

    public List<AssetsDevicetypeRefactor> fetchDevicetypeByInfosysid(Integer infosysid){
        AssetsDevicetypeRefactorExample example = new AssetsDevicetypeRefactorExample();
        example.or().andIscustomizeEqualTo("N");
        example.or().andInfosysidEqualTo(infosysid);
        return assetsDevicetypeRefactorMapper.selectByExample(example);
    }

 

下面是 and or 连用的example教程:

MyBatis - MyBatis Generator 生成的example 如何使用 and or 简单混合查询

关于Mybatis的Example(and ,or )应用

 

相关文章: