From ba47c3ca1692597357732240a097405551fde6fc Mon Sep 17 00:00:00 2001 From: liapples Date: Wed, 18 Aug 2021 00:37:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E4=BB=98=E6=96=B9=E5=BC=8F=E5=B8=B8?= =?UTF-8?q?=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Common/PayType.php | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 app/Common/PayType.php diff --git a/app/Common/PayType.php b/app/Common/PayType.php new file mode 100644 index 0000000..155bbc9 --- /dev/null +++ b/app/Common/PayType.php @@ -0,0 +1,30 @@ + '在线支付', + self::OFFLINE => '线下支付', + self::SUBSCRIPTION => '订金支付', + self::DEPOSIT => '定金支付', + self::FULL_PAY => '全款支付', + self::BALANCE_PAY => '尾款/多加支付', + ]; + } +}