| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * @description:
- * @property string $channel_name
- * @property integer $channel_id
- * @property string $merchant_name
- * @property string $merchant_id
- * @property string $pay_name
- * @property integer $store_id
- * @property integer $pay_type
- * @property integer $group
- * agent_examine
- */
- class SaasCloudPay extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%saas_cloud_pay}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [[ 'channel_name','merchant_name','merchant_id','pay_name'], 'string'],
- [['id', 'store_id', 'pay_type', 'group','channel_id'], 'integer']
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => '商城ID',
- 'channel_name' => '渠道号名称',
- 'channel_id' => '渠道号ID',
- 'merchant_name' => '商户名称',
- 'merchant_id' => '商户ID',
- 'pay_name' => '支付名称',
- 'pay_type' => '支付类型',
- 'group' => '分组',
- ];
- }
- }
|