/**
  * @return \yii\db\ActiveQuery
  */
 public function getUser()
 {
     return $this->hasOne(User::className(), ['id' => 'userid']);
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMy()
 {
     return $this->hasOne(User::className(), ['id' => 'myid']);
 }
示例#3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTo0()
 {
     return $this->hasOne(User::className(), ['id' => 'to']);
 }