feat: move miniapp server project

This commit is contained in:
ckaaaa 2025-09-18 10:36:08 +08:00
parent 4a940f28ba
commit 96d9063b13
178 changed files with 9699 additions and 5044 deletions

31
app/Constant.php Normal file
View 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"
]
];
}