public ListPage<LoginAccountChange> listTodoAudit(ListPage<LoginAccountChange> page,LoginAccountChange t ){
SearchCondition sc = new SearchCondition();
if( t != null ){
if( t.getLoginAccount() != null ){
if( !StringUtils.isEmpty(t.getLoginAccount().getLoginName()) ){
sc.like("loginAccount.loginName",t.getLoginAccount().getLoginName().trim());
}
}
}
sc.in("status",RoleChange.Status.NEW.name(),RoleChange.Status.PROCESSING.name());
//sc.equal("status",RoleChange.Status.NEW);