| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class StoreAliMini
- * @package app\models
- * @property integer $id
- * @property integer $store_id
- * @property integer $mini_id
- * @property string $business_address
- * @property string $shop_category
- * @property string $shop_type
- * @property string $shop_name
- * @property string $out_door_images
- * @property string $qualifications
- * @property integer $created_at
- * @property integer $status
- * @property string $shop_order_id
- * @property string $merchant_name
- * @property string $shop_id
- * @property string $new_shop_category
- * @property string $info_status
- * @property integer $is_delete
- * @property string $fail_reason
- **/
- class StoreAliShop extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_ali_shop}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'store_id', 'mini_id', 'created_at', 'status', 'is_delete'], 'integer'],
- [['business_address', 'shop_order_id', 'shop_category', 'shop_type', 'shop_name', 'out_door_images', 'qualifications', 'shop_id', 'merchant_name', 'new_shop_category', 'info_status', 'fail_reason'], 'string']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "id",
- 'store_id' => "商城id",
- 'mini_id' => "支付宝小程序id",
- 'business_address' => "经营地址信息",
- 'shop_category' => "新版门店类目标准二级类目code",
- 'shop_type' => "店铺经营类型,01表示直营,02表示加盟",
- 'shop_name' => "店铺名称",
- 'out_door_images' => "门头照地址",
- 'qualifications' => "行业特殊资质。",
- 'created_at' => "创建时间",
- 'status' => "0未审核 1审核中 2审核完成",
- 'shop_order_id'=> "订单号",
- 'merchant_name'=> "商户名称",
- 'shop_id'=> "商城id",
- 'new_shop_category'=> "新版门店类目标准二级类目code",
- 'info_status'=> "当前名称、地址、经纬度信息准确一致,可用于数字化经营场景消费(01=已认证,02=待优化,99=未知)",
- 'is_delete' => "是否删除",
- "fail_reason" => "失败原因"
- ];
- }
- }
|