예제 #1
0
파일: Service.php 프로젝트: Zlatov/yii2test
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSecs()
 {
     return $this->hasMany(SecService::className(), ['id' => 'sec'])->viaTable('sec_ser', ['ser' => 'id']);
 }
예제 #2
0
파일: SecSer.php 프로젝트: Zlatov/yii2test
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getSec0()
 {
     return $this->hasOne(SecService::className(), ['id' => 'sec']);
 }