コード例 #1
0
ファイル: Category.php プロジェクト: pistol88/yii2-staffer
 public function getParent()
 {
     return $this->hasOne(Category::className(), ['id' => 'parent_id']);
 }
コード例 #2
0
ファイル: Staffer.php プロジェクト: pistol88/yii2-staffer
 public function getCategory()
 {
     return $this->hasOne(Category::className(), ['id' => 'category_id']);
 }