| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- /**
- * Class StorePayChannel
- * @package app\models
- * @property integer $id
- * @property integer $store_id
- * @property integer $type
- * @property integer $mch_id
- *
- *
- *
- **/
- class StorePayChannel extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%store_pay_channel}}';
- }
- const TYPE_YSDL = 0;
- const TYPE_WECHAT = 1;
- const TYPE_ALIPAY = 2;
- const TYPE_HUIFU = 3;
- const TYPE_YUNST = 4;
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'store_id','type','mch_id'], 'integer']
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => "ID",
- 'store_id' => "店铺ID",
- 'type' => "支付渠道类型",
- 'mch_id' => "商户ID",
- ];
- }
- }
|