| 12345678910111213141516171819202122232425 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhRecommend".
- *
- * @property int $id
- * @property int $sjId 商家id
- * @property string $goods 首页推荐的商品json
- * @property string $slide 幻灯片内容
- * @property string $createTime 创建时间
- * @property string $updateTime
- */
- class xhRecommend extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhRecommend';
- }
- }
|