コード例 #1
0
ファイル: Report.php プロジェクト: ap-404/rate
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getExchange()
 {
     return $this->hasMany(Exchange::className(), ['create_time' => 'date', 'location_id' => 'location_id']);
 }
コード例 #2
0
ファイル: Users.php プロジェクト: ap-404/rate
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getExchanges()
 {
     return $this->hasMany(Exchange::className(), ['user_id' => 'id']);
 }