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.
34 lines
703 B
PHP
34 lines
703 B
PHP
<?php
|
|
namespace Base\Service;
|
|
|
|
use Base\Model\PromoteModel;
|
|
use Base\Model\UserPlayInfoModel;
|
|
use Base\Model\UserPlayModel;
|
|
use Base\Model\UserModel;
|
|
use Think\Model;
|
|
|
|
class PresidentDepositService
|
|
{
|
|
const PAY_TYPE_CASH = 1;
|
|
const PAY_TYPE_DIVIDE = 2;
|
|
const PAY_TYPE_NONE = 3;
|
|
|
|
public static $payWays = [
|
|
1 => '银行转账',
|
|
2 => '支付宝转账',
|
|
3 => '微信转账',
|
|
4 => '分成款扣除',
|
|
];
|
|
|
|
public static $payTypes = [
|
|
self::PAY_TYPE_CASH => '线下转账',
|
|
self::PAY_TYPE_DIVIDE => '分成款扣除',
|
|
self::PAY_TYPE_NONE => '无需押金',
|
|
];
|
|
|
|
public static $statusList = [
|
|
0 => '待确认',
|
|
1 => '已收到',
|
|
2 => '已退款',
|
|
];
|
|
} |