| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhRecommend".
- *
- * @property int $id
- * @property int $merchantId 商家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';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['merchantId'], 'integer'],
- [['createTime'], 'required'],
- [['createTime', 'updateTime'], 'safe'],
- [['goods'], 'string', 'max' => 100],
- [['slide'], 'string', 'max' => 1000],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'merchantId' => 'Merchant ID',
- 'goods' => 'Goods',
- 'slide' => 'Slide',
- 'createTime' => 'Create Time',
- 'updateTime' => 'Update Time',
- ];
- }
- }
|