'', 'affectivestatus' => '', 'alipay' => '', 'avatar' => '', 'bio' => '', 'birthday' => '0', 'birthmonth' => '0', 'birthyear' => '0', 'bloodtype' => '', 'company' => '', 'constellation' => '', 'createtime' => '', 'credit1' => '0.00', 'credit2' => '0.00', 'credit3' => '', 'credit4' => '0.00', 'credit5' => '0.00', 'credit6' => '0.00', 'education' => '', 'email' => '', 'gender' => '0', 'grade' => '', 'graduateschool' => '', 'groupid' => '0', 'height' => '', 'idcard' => '', 'interest' => '', 'lookingfor' => '', 'mobile' => '', 'msn' => '', 'nationality' => '', 'nickname' => '', 'occupation' => '', 'password' => '', 'pay_password' => '', 'position' => '', 'qq' => '', 'realname' => '', 'residecity' => '', 'residedist' => '', 'resideprovince' => '', 'revenue' => '', 'salt' => '', 'site' => '', 'studentid' => '', 'taobao' => '', 'telephone' => '', 'uniacid' => '', 'user_from' => '', 'vip' => '0', 'weight' => '', 'zipcode' => '', 'zodiac' => '', ); public function searchWithUniacid($uniacid) { return $this->query->where('uniacid', $uniacid); } public function searchWithEmail($email) { return $this->query->where('email', $email); } public function searchWithMobile($mobile) { return $this->query->where('mobile', $mobile); } public function searchWithoutUid($uid) { return $this->query->where('uid <>', $uid); } public function searchCreditsRecordUid($uid) { $this->query->where('r.uid', $uid); return $this; } public function searchCreditsRecordType($type) { $this->query->where('r.credittype', $type); return $this; } public function searchWithMobileOrEmail($mobile_or_email) { $this->query->where('mobile', $mobile_or_email)->whereor('email', $mobile_or_email); return $this; } }