| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * This is the model class for table "{{%store_bind_log}}".
- *
- * @property int $id
- * @property int $order_id
- * @property int $saas_id
- * @property int $new_store_id
- * @property int $old_store_id
- * @property int $bind_time
- */
- class StoreBindLog extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_bind_log}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'order_id', 'saas_id', 'new_store_id', 'old_store_id', 'bind_time'], 'integer']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "ID主键",
- 'order_id' => "订单ID",
- 'saas_id' => "联盟ID",
- 'new_store_id' => "店铺ID",
- 'old_store_id' => "店铺Id",
- 'bind_time' => "绑定时间",
- ];
- }
- }
|