This commit is contained in:
邹宗楠
2024-01-19 15:36:12 +08:00
parent c6cb53c7a3
commit 8d19256710
4 changed files with 49 additions and 33 deletions

View File

@@ -239,6 +239,14 @@ func TestDeleteActSku(t *testing.T) {
}
func TestSync(t *testing.T) {
ans := 1 & 4
fmt.Println(ans)
aa := &struct {
Token string `json:"token"`
RefreshToken string `json:"refresh_token"`
}{
Token: "11",
RefreshToken: "222",
}
fmt.Println(utils.Struct2MapByJson(aa))
}