- 修正各平台与拉取订单相关的API的bug

This commit is contained in:
gazebo
2019-07-18 18:35:59 +08:00
parent e29e30604e
commit 061e906d17
8 changed files with 210 additions and 23 deletions

View File

@@ -2,6 +2,7 @@ package mtwmapi
import (
"testing"
"time"
"git.rosy.net.cn/baseapi/utils"
)
@@ -113,3 +114,11 @@ func TestGetOrderActDetaill(t *testing.T) {
}
t.Log(utils.Format4Output(result, false))
}
func TestGetOrderIdByDaySeq(t *testing.T) {
result, err := api.GetOrderIdByDaySeq("7111597", utils.Time2Date(time.Now()), 1, 100)
t.Log(utils.Format4Output(result, false))
if err != nil {
t.Fatal(err)
}
}