feat(all): 同步最新进度

This commit is contained in:
xingc
2025-04-03 17:21:29 +08:00
parent d6098c8b87
commit 70e0e5b034
24 changed files with 806 additions and 184 deletions

View File

@@ -0,0 +1,28 @@
# -*- coding = utf-8 -*-
# @Time : 2025/2/24 下午9:51
# @File : schema.py
# @Software : PyCharm
# @Author : xingc
# @Desc :
from pydantic import BaseModel
class CreateOrderIn(BaseModel):
product_id: int
openid: str
total_fee: int
body: str
class PaymentParamsOut(BaseModel):
appId: str
timeStamp: str
nonceStr: str
package: str
package: str
signType: str
class CreateOrderOut(BaseModel):
payment_params: PaymentParamsOut
order_id: str