| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?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 $is_acct_split
- * agent_examine
- */
- class PlatformHuifuMerchant extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%platform_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'], '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' => '状态',
- ];
- }
- }
|