示例#1
0
文件: Analysis.php 项目: aiyeyun/grab
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCodi()
 {
     return $this->hasOne(Code::className(), ['id' => 'codi_id']);
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCodes()
 {
     return $this->hasMany(Code::className(), ['member_id' => 'id']);
 }
示例#3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCodes()
 {
     return $this->hasMany(Code::className(), ['created_by' => 'id']);
 }