| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhOrderGoods".
- *
- * @property integer $id
- * @property string $orderId
- * @property integer $goodsId
- * @property integer $userId
- * @property integer $sjId
- * @property string $title
- * @property string $cover
- * @property string $unitPrice
- * @property integer $num
- * @property string $createTime
- * @property string $updateTime
- */
- class xhOrderGoods extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhOrderGoods';
- }
- }
|