All checks were successful
Build docker and publish / build (20.15.1) (push) Successful in 7m31s
8 lines
236 B
Go
8 lines
236 B
Go
package order
|
||
|
||
// canonicalOrderMethod 返回订单的支付方式标识
|
||
// 直接使用 payment 表中的 platform 原始值(如 apple_iap),不做大小写转换
|
||
func canonicalOrderMethod(method string) string {
|
||
return method
|
||
}
|