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

25 lines
369 B

<?php
namespace App\Common;
class StatementType
{
/** @var int 微信支付手续费 */
const CHARGE = 1;
/** @var int 抽成 */
const CUT = 2;
/** @var int 订单结算 */
const ORDER = 3;
public static function array(): array
{
return [
self::CHARGE => '微信支付手续费',
self::CUT => '抽成',
self::ORDER => '订单结算',
];
}
}