海南旅游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
714 B

<?php
namespace App\Common;
class StatementType
{
/** @var int 微信支付手续费 */
const CHARGE = 1;
/** @var int 抽成 */
const CUT = 2;
/** @var int 订单结算 */
const ORDER = 3;
/** @var int 提现 */
const WITHDRAWAL = 4;
/** @var int 提现手续费 */
const WITHDRAWAL_CAT = 5;
/** @var int 退款 */
const REFUND = 6;
/** @var int 交易金 */
const DEPOSIT = 7;
public static function array(): array
{
return [
self::CHARGE => '微信支付手续费',
self::CUT => '抽成',
self::ORDER => '订单结算',
self::WITHDRAWAL => '提现',
self::WITHDRAWAL_CAT => '提现手续费',
self::REFUND => '退款',
self::DEPOSIT => '扣交易金',
];
}
}