hi-server/internal/logic/public/order/paymentMethod.go
shanshanzhong 48383fa0a9
All checks were successful
Build docker and publish / build (20.15.1) (push) Successful in 7m31s
更新支付方式相关业务逻辑。
2026-03-10 21:42:02 -07:00

8 lines
236 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package order
// canonicalOrderMethod 返回订单的支付方式标识
// 直接使用 payment 表中的 platform 原始值(如 apple_iap不做大小写转换
func canonicalOrderMethod(method string) string {
return method
}