示例#1
0
文件: Category.php 项目: KokLip/GST
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTbproducts()
 {
     return $this->hasMany(Tbproduct::className(), ['product_categoryid' => 'category_id']);
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getQuotationdetailProduct()
 {
     return $this->hasOne(Tbproduct::className(), ['product_id' => 'quotationdetail_productid']);
 }
示例#3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPurchaseorderdetailProduct()
 {
     return $this->hasOne(Tbproduct::className(), ['product_id' => 'purchaseorderdetail_productid']);
 }