You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
|
|
namespace Admin\Model;
|
|
|
|
use Think\Model;
|
|
|
|
class PaymentMerchantModel extends Model
|
|
{
|
|
protected $tablePrefix = 'tab_';
|
|
public $Ways=[
|
|
"1"=>"支付宝",
|
|
"2"=>"微信",
|
|
"4"=>"快捷支付"
|
|
];
|
|
public $Channel=[
|
|
"1"=>"官方支付宝",
|
|
"2"=>"官方微信",
|
|
"3"=>"易宝支付",
|
|
"4"=>"双乾支付",
|
|
"5"=>"汇付宝支付"
|
|
];
|
|
|
|
} |