コード例 #1
0
ファイル: Role.php プロジェクト: tiyolab/autocom
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getUserTypes()
 {
     return $this->hasMany(UserType::className(), ['role' => 'id']);
 }
コード例 #2
0
ファイル: User.php プロジェクト: tiyolab/autocom
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getUserType()
 {
     return $this->hasOne(UserType::className(), ['id' => 'user_type']);
 }