@Override
  public List<OrganUserBo> getDeptReceivers(String deptIdStr) {
    // String deptIdStr = CommonUtil.listToStringBySplit(deptIds);
    String result = portalUtil.getDeptReceivers(deptIdStr);

    if (!"error".equals(result)) {
      return this.getUserList(result);
    }

    return null;
  }