天天看點

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 )應用

繼續閱讀