コード例 #1
0
ファイル: Sensor.php プロジェクト: ICHydro/anaconda
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCatchment()
 {
     return $this->hasOne(\app\models\Catchment::className(), ['id' => 'catchmentid']);
 }
コード例 #2
0
ファイル: User.php プロジェクト: ICHydro/anaconda
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCatchments()
 {
     return $this->hasMany(\app\models\Catchment::className(), ['userid' => 'id']);
 }