示例#1
0
 public function getEmploye()
 {
     return $this->hasOne(Employe::className(), ['EMP_ID' => 'ID_USER']);
 }
示例#2
0
 public function getEmployee()
 {
     return $this->hasOne(Employe::className(), ['EMP_ID' => 'CREATED_BY']);
 }
示例#3
0
 public function getAgendaTbl2()
 {
     return $this->hasOne(Employe::className(), ['EMP_ID' => 'PIC']);
 }
示例#4
0
 public function getEmpTbl()
 {
     return $this->hasOne(Employe::className(), ['EMP_ID' => 'EMP_ID'])->via('userTbl');
 }
示例#5
0
 public function getEmployecc()
 {
     return $this->hasOne(Employe::className(), ['EMP_EMAIL' => 'USER_CC']);
 }
示例#6
0
 public function getApprove()
 {
     return $this->hasOne(Employe::className(), ['EMP_ID' => 'APPROVE_DIR']);
 }