参考: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教程: