/**
  * 锁定小区园丁申请状态
  *
  * @param int $communityId
  * @param int $brokerId
  * @return bool
  */
 public static function lockCommunityGardenerApply($communityId, $brokerId)
 {
     return Model_Community_CommunityState::lockCommunityGardenerApply($communityId, $brokerId, time() + self::COMMUNITY_GARDENER_APPLY_EXPIRATION_TIME);
 }