示例#1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAutos()
 {
     return $this->hasMany(Auto::className(), ['idcat' => 'id'])->orderBy(['priceT' => SORT_ASC]);
 }
示例#2
0
文件: Drivers.php 项目: t4le/365
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCar0()
 {
     return $this->hasOne(Auto::className(), ['id' => 'car']);
 }
示例#3
0
文件: Autocat.php 项目: t4le/365
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAutos()
 {
     return $this->hasMany(Auto::className(), ['idcat' => 'id']);
 }