/**
  * @return \yii\db\ActiveQuery
  */
 public function getCustomer()
 {
     return $this->hasOne(Customer::className(), ['customer_user_name' => 'user_name']);
 }
Ejemplo n.º 2
0
 public function getParent()
 {
     return $this->hasOne(Customer::className(), ['id' => 'parentId']);
 }