| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class StoreMiniToken
- * @package app\models
- * @property integer $id
- * @property integer $store_id
- * @property string $app_auth_token
- * @property integer $created_at
- * @property integer $update_at
- * @property integer $type
- * @property integer $salesman_id
- * @property integer $status
- * @property string $url
- * @property string $batch_no
- * @property integer $batch_status
- * @property string $contact_name
- * @property string $contact_mobile
- * @property string $contact_email
- * @property string $account
- * @property string $batch_url
- * @property string $fail_reason
- * @property string $license_no
- * @property string $license_pic
- **/
- class StoreMiniToken extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_mini_token}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'store_id', 'created_at', 'update_at', 'type', "salesman_id", 'status', 'batch_status'], 'integer'],
- [['app_auth_token', 'url', 'batch_no', 'contact_name', 'contact_mobile', 'contact_email', 'account', 'batch_url', 'fail_reason', 'license_no', 'license_pic'], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "主键",
- 'store_id' => "商城ID",
- 'app_auth_token' => "token值",
- 'created_at' => "创建时间",
- 'update_at' => "修改时间",
- 'type' => "0微信 1支付宝",
- 'salesman_id' => "业务员ID",
- 'status' => "状态0签约中 1签约完成 2签约失败",
- "url" => "码地址",
- "batch_no" => "事务编号",
- "batch_status" => "事务状态",
- "contact_name" => "商户名称",
- "contact_mobile" => "商户手机号",
- "contact_email" => "商户邮箱",
- "account" => "商家支付宝账户",
- "batch_url" => "商户签约确认链接",
- "fail_reason" => "失败原因",
- "license_no" => "企业编码",
- "license_pic" => "营业执照",
- ];
- }
- }
|