diff --git a/app/Common/StatementType.php b/app/Common/StatementType.php index 8507135..1ea50e5 100644 --- a/app/Common/StatementType.php +++ b/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 => '行业订单结算', ]; } }