GoodsCategory.php 271 B

1234567891011121314151617181920
  1. <?php
  2. namespace bizHd\goods\models;
  3. use bizHd\base\models\Base;
  4. class GoodsCategory extends Base
  5. {
  6. public static function tableName()
  7. {
  8. return 'xhGoodsCategory';
  9. }
  10. public function getGoods()
  11. {
  12. return $this->hasOne(Goods::className(), ['id'=>'gId']);
  13. }
  14. }