相当于sql: and s.name = null;(这里的s.name为举例) 举例: new Example类略 exampl.createCriteria().andNameIsNull(); 2.and字段名IsNotNull 很明显啦!就是组装这个字段不为null的条件,相当于(不举例了!!我对你们的智商很有自信) 举例: new Example类略 exampl.createCriteria().andNameIsNotNull()...