海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
753 B

<?php
namespace App\Common;
/**
* 支付方式常量
* Class PayType
* @package App\Common
*/
class PayType
{
/** @var int 在线全款支付 */
const ONLINE = 0;
/** @var int 线下支付 */
const OFFLINE = 1;
/** @var int 订金支付 */
const DEPOSIT_PAY = 2;
/** @var int 定金支付 */
const EARNEST_PAY = 3;
/** @var int 尾款/多加支付 */
const DOWN_PAYMENT = 4;
/** @var int 尾款/多加支付 */
const BALANCE_PAY = 5;
public static function array()
{
return [
self::ONLINE => '在线支付',
self::OFFLINE => '线下支付',
self::DEPOSIT_PAY => '订金支付',
self::EARNEST_PAY => '定金支付',
self::DOWN_PAYMENT => '首款支付',
self::BALANCE_PAY => '尾款/多加支付',
];
}
}