天天看点

Mybatis使用generator自动生成的Example类使用OR条件查询

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 example使用 and和or联合查询(转)

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

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

继续阅读