public List<Office> findList(Boolean isAll) { if (isAll != null && isAll) { return UserUtils.getOfficeAllList(); } else { return UserUtils.getOfficeList(); } }
/** 获取对象值(导入) */ public static Object getValue(String val) { for (Office e : UserUtils.getOfficeList()) { if (StringUtils.trimToEmpty(val).equals(e.getName())) { return e; } } return null; }
public List<Office> findAll() { return UserUtils.getOfficeList(); }