- jd.GetStoreOrderInfoList

This commit is contained in:
gazebo
2019-01-11 15:09:55 +08:00
parent 5f995dc927
commit bfb0b139fa
2 changed files with 19 additions and 0 deletions

View File

@@ -29,3 +29,11 @@ func TestGetStoreOrderInfo(t *testing.T) {
}
baseapi.SugarLogger.Debug(utils.Format4Output(orderInfo, false))
}
func TestGetStoreOrderInfoList(t *testing.T) {
orderInfoList, err := jdapi.GetStoreOrderInfoList("2018-10-01 00:00:00", "2018-10-01 00:59:59")
if err != nil {
t.Fatal(err)
}
baseapi.SugarLogger.Debug(utils.Format4Output(orderInfoList, false))
}