This commit is contained in:
richboo111
2023-08-30 15:06:54 +08:00
parent 29523503d8
commit 67fb302b10
5 changed files with 83 additions and 21 deletions

View File

@@ -3,6 +3,7 @@ package tao_vegetable
import (
"fmt"
"git.rosy.net.cn/baseapi"
"git.rosy.net.cn/baseapi/platformapi/sfps2"
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability587/domain"
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability587/request"
"git.rosy.net.cn/baseapi/utils"
@@ -136,9 +137,17 @@ func TestUpdateStoreTest(t *testing.T) {
}
}
func TestDelete(t *testing.T) {
err := apiTao.ShopUpdateStatus("JX668594", 1)
func TestShopUpdateStatus(t *testing.T) {
err := apiTao.ShopUpdateStatus("JX667321", 1)
if err != nil {
fmt.Println(err)
}
}
func TestSFStore(t *testing.T) {
var ans string
for k, _ := range sfps2.SFCityStoreIDs {
ans += `"` + k + `",`
}
fmt.Printf("%s", ans)
}