Browse Source

增加INDUSTRY_ORDER常量

master
李可松 4 years ago
parent
commit
4829cd67dc
  1. 4
      app/Common/StatementType.php

4
app/Common/StatementType.php

@ -26,6 +26,9 @@ class StatementType
/** @var int 交易金 */
const DEPOSIT = 7;
/** @var int 行业产品订单结算 */
const INDUSTRY_ORDER = 8;
public static function array(): array
{
return [
@ -36,6 +39,7 @@ class StatementType
self::WITHDRAWAL_CAT => '提现手续费',
self::REFUND => '退款',
self::DEPOSIT => '扣交易金',
self::INDUSTRY_ORDER => '行业订单结算',
];
}
}
Loading…
Cancel
Save