feat: move miniapp server project
This commit is contained in:
parent
4a940f28ba
commit
96d9063b13
178 changed files with 9699 additions and 5044 deletions
31
app/Constant.php
Normal file
31
app/Constant.php
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace app;
|
||||
|
||||
class Constant
|
||||
{
|
||||
public static $CACHE_ACCESS_TOKEN = 'CACHE_ACCESS_TOKEN';
|
||||
public static $ORDER_S_PTR = 'ORDER_S_PTR';
|
||||
public static $ORDER_PAY_STAUS = [
|
||||
"init" => [
|
||||
"text" => "待支付",
|
||||
"value" => "init"
|
||||
],
|
||||
"payed" => [
|
||||
"text" => "已支付",
|
||||
"value" => "payed"
|
||||
],
|
||||
"cancel" => [
|
||||
"text" => "已取消",
|
||||
"value" => "cancel"
|
||||
],
|
||||
"need_refund" => [
|
||||
"text" => "待退款",
|
||||
"value" => "need_refund"
|
||||
],
|
||||
"refund" => [
|
||||
"text" => "已退款",
|
||||
"value" => "refund"
|
||||
]
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue