Exemplo n.º 1
0
 /**
  * 获取经纪人未完成的申请
  *
  * @param int $communityId
  * @param int $brokerId
  * @return array
  */
 public static function getBrokerUnfinishedApply($communityId, $brokerId)
 {
     $expiredTime = time() - self::COMMUNITY_GARDENER_APPLY_EXPIRATION_TIME;
     return Model_Community_GardenerApply::getBrokerUnfinishedApply($communityId, $brokerId, $expiredTime);
 }