| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * This is the model class for table "{{%aggregate_saas_qrcode}}".
- *
- * @property int $id
- * @property int $store_id
- * @property string $param_url
- * @property string $qrcode_url
- * @property int $admin_id
- * @property int $salesman_id
- * @property int $is_use
- * @property string $mini_url
- * @property string $create_time
- * @property int $shop_bind_time
- */
- class AggregateSaasQrcode extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%aggregate_saas_qrcode}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [["id", "store_id", "admin_id", "salesman_id", "is_use", "create_time", "shop_bind_time"], 'integer'],
- [["param_url", "qrcode_url", 'mini_url'], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "ID",
- 'store_id' => "商城ID",
- 'param_url' => "访问链接",
- 'qrcode_url' => "二维码地址",
- 'admin_id' => "代理ID",
- 'salesman_id' => "业务员ID",
- "is_use"=> "使用状态",
- "mini_url"=> "小程序链接",
- "create_time"=> "创建时间",
- "shop_bind_time"=> "商城绑定时间"
- ];
- }
- }
|