| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class StoreMedia
- * @package app\models
- * @property integer $id
- * @property integer $store_id
- * @property string $group_id
- * @property string $group_name
- * @property integer $max_capacity
- * @property integer $image_num
- * @property integer $created_at
- **/
- class StoreImageSearchSetting extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_image_search_setting}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [["id", "store_id", "max_capacity", "image_num", "created_at"], 'integer'],
- [["group_id", "group_name"], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- "id" => "ID",
- "store_id" => "商城ID",
- "group_id" => "图库ID",
- "group_name" => "图库描述",
- "max_capacity" => "图库最大容纳数量",
- "image_num" => "当前图库图片数量",
- "created_at" => "创建时间",
- ];
- }
- }
|