/**
  * @return \yii\db\ActiveQuery
  */
 public function getLocation0()
 {
     return $this->hasOne(Area::className(), ['location' => 'location']);
 }
예제 #2
0
 public function getArea()
 {
     return $this->hasOne(Area::className(), ['id' => 'area_id']);
 }
예제 #3
0
 public function getDistrictArea()
 {
     return $this->hasOne(Area::className(), ['area_id' => 'district']);
 }
예제 #4
0
파일: City.php 프로젝트: kurmidev/ims
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAreas()
 {
     return $this->hasMany(Area::className(), ['cityid' => 'id']);
 }