This commit is contained in:
suyl
2021-06-18 11:31:39 +08:00
parent 03ef52656c
commit 8424c617da
7 changed files with 32 additions and 0 deletions

View File

@@ -132,3 +132,7 @@ func GenAfsOrderNo(ctx *jxcontext.Context) (orderNo int64) {
orderNo += int64(math.Pow10(int(math.Log10(float64(orderNo)))+1)) * prefix
return orderNo
}
func (c *PurchaseHandler) GetOrderAfsInfo(ctx *jxcontext.Context, vendorOrderID, afsOrderID string) (orderAfsInfo *partner.OrderAfsInfo, err error) {
return orderAfsInfo, err
}