示例#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']);
 }