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