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

时间:2023-03-09 01:38:14
Mybatis使用generator自动生成的Example类使用OR条件查询

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

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

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