コード例 #1
0
ファイル: Country.php プロジェクト: 92Sam/casein-v2
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSysStates()
 {
     return $this->hasMany(SysState::className(), ['country_id' => 'id']);
 }
コード例 #2
0
ファイル: City.php プロジェクト: 92Sam/casein-v2
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getState()
 {
     return $this->hasOne(SysState::className(), ['id' => 'state_id']);
 }