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.
23 lines
405 B
PHTML
23 lines
405 B
PHTML
4 years ago
|
<?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"=>"汇付宝支付"
|
||
|
];
|
||
|
|
||
|
}
|