예제 #1
0
파일: Category.php 프로젝트: xidiao/turen
 /**
  * 自我表关联
  */
 public function getMySelf()
 {
     return $this->hasOne(Category::className(), ['id' => 'parent_id']);
 }
예제 #2
0
파일: Product.php 프로젝트: jorry2008/turen
 /**
  * 与产品分类联表
  */
 public function getCategory()
 {
     return $this->hasOne(Category::className(), ['id' => 'category_id']);
 }