예제 #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCountry()
 {
     return $this->hasOne(Country::className(), ['countryid' => 'countryid']);
 }
예제 #2
0
파일: User.php 프로젝트: rocketyang/admap
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCountries()
 {
     return $this->hasMany(Country::className(), ['user_id' => 'id']);
 }