| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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 integer $goods_id
- * @property string $pic_url
- * @property integer $status
- * @property integer $is_delete
- * @property integer $created_at
- * @property integer $updated_at
- * @property string $image_name
- **/
- class UploadGoodsImage extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%upload_goods_image}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [["id", "store_id", "goods_id", "status", "is_delete", "created_at", "updated_at"], 'integer'],
- [["pic_url"], 'string'],
- [["store_id", "goods_id", "pic_url",], 'required'],
- [["status", "is_delete", "created_at", "updated_at"], 'default', 'value' => 0]
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- "id" => "ID",
- "store_id" => "商城ID",
- "goods_id" => "商品ID",
- "pic_url" => "图片链接",
- "status" => "图库最大容纳数量",
- "is_delete" => "当前图库图片数量",
- "created_at" => "创建时间",
- "updated_at" => "更新时间"
- ];
- }
- }
|