| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%cloud_goods_update_log}}".
- *
- * @property integer $id
- * @property integer $cloud_goods_id
- * @property integer $goods_id
- * @property integer $store_id
- * @property integer $cloud_supplier_id
- * @property integer $is_update
- * @property integer $is_delete
- * @property integer $created_at
- * @property integer $updated_at
- * @property integer $is_audit
- * @property integer $status
- */
- class CloudGoodsUpdateLog extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%cloud_goods_update_log}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'cloud_supplier_id', 'cloud_goods_id', 'store_id', 'is_update', 'created_at', 'updated_at', 'is_audit', 'status', 'goods_id'], 'integer']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => '',
- 'cloud_supplier_id' => '供货商id',
- 'cloud_goods_id' => '云仓商品id',
- 'store_id' => '商城id',
- 'is_update' => '是否更新0未更新 1已经更新',
- 'created_at' => '创建记录时间',
- 'updated_at' => '修改时间',
- 'is_audit' => '商品是否审核0未审核 1已审核',
- 'status' => '原商品是否上架'
- ];
- }
- }
|