This commit is contained in:
Mrx
2026-06-06 17:03:08 +08:00
parent a85436950e
commit 35e9191981
28 changed files with 666 additions and 286 deletions

View File

@@ -27,10 +27,6 @@ service main {
@handler XpayPush
get /pay/xpay/push
post /pay/xpay/push
// 运维xpay 手动补发货
@handler XpayAdminDeliver
post /pay/xpay/admin/deliver (XpayAdminDeliverReq) returns (XpayAdminDeliverResp)
}
@server (
@@ -79,15 +75,3 @@ type (
}
)
type (
XpayAdminDeliverReq {
OrderNo string `json:"order_no" validate:"required"`
}
XpayAdminDeliverResp {
Credited bool `json:"credited"`
Notified bool `json:"notified"`
WechatDetail string `json:"wechat_detail"`
Errors []string `json:"errors"`
}
)