コード例 #1
0
ファイル: Seller.php プロジェクト: jaybril/www.mimgpotea.com
 public function getCity()
 {
     return $this->hasOne(Area::className(), ['id' => 'sellerCity']);
 }
コード例 #2
0
ファイル: Area.php プロジェクト: jaybril/www.mimgpotea.com
 public function getPrev()
 {
     return $this->hasOne(Area::className(), ['id' => 'parentId']);
 }
コード例 #3
0
 public function getArea()
 {
     return $this->hasOne(Area::className(), ['id' => 'areaId']);
 }