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.
33 lines
557 B
33 lines
557 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;
|
|
|
|
public static function array(): array
|
|
{
|
|
return [
|
|
self::CHARGE => '微信支付手续费',
|
|
self::CUT => '抽成',
|
|
self::ORDER => '订单结算',
|
|
self::WITHDRAWAL => '提现',
|
|
self::WITHDRAWAL_CAT => '提现手续费',
|
|
];
|
|
}
|
|
}
|