xhOrderGoods.php 573 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhOrderGoods".
  5. *
  6. * @property integer $id
  7. * @property string $orderId
  8. * @property integer $goodsId
  9. * @property integer $userId
  10. * @property integer $sjId
  11. * @property string $title
  12. * @property string $cover
  13. * @property string $unitPrice
  14. * @property integer $num
  15. * @property string $createTime
  16. * @property string $updateTime
  17. */
  18. class xhOrderGoods extends xhBaseModel
  19. {
  20. /**
  21. * @inheritdoc
  22. */
  23. public static function tableName()
  24. {
  25. return 'xhOrderGoods';
  26. }
  27. }