| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * @description:
- * @property string $huifu_name
- * @property string $sys_id
- * @property string $product_id
- * @property string $huifu_id
- * @property string $rsa_huifu_public_key
- * @property string $rsa_merch_public_key
- * @property string $rsa_merch_private_key
- * @property integer $sort
- * @property integer $status
- * @property integer $created_at
- * @property integer $updated_at
- * @property integer $is_delete
- * @property integer $channel_id
- * agent_examine
- */
- class LocalHuifuMerchant extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%local_huifu_merchant}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [[ 'huifu_name', 'sys_id', 'product_id', 'huifu_id', 'rsa_huifu_public_key', 'rsa_merch_public_key', 'rsa_merch_private_key'], 'string'],
- [['id', 'sort', 'status', 'is_delete', 'created_at', 'updated_at', 'channel_id'], 'integer']
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'huifu_name' => '商户名称',
- 'sys_id' => '商户的huifu_id',
- 'product_id' => '汇付分配的产品号',
- 'huifu_id' => '商户号',
- 'rsa_huifu_public_key' => '汇付公钥',
- 'rsa_merch_public_key' => '商户公钥',
- 'rsa_merch_private_key' => '商户私钥',
- 'sort' => '排序',
- 'status' => '状态',
- 'channel_id' => '渠道号ID',
- ];
- }
- }
|