From 7fc1b0a65c5933db40282c1e9312582f1241d278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Mon, 2 Dec 2019 09:55:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=AC=E4=B8=9C=E7=94=A8=E6=88=B7=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- platformapi/jdapi/store_page_test.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/platformapi/jdapi/store_page_test.go b/platformapi/jdapi/store_page_test.go index 310e2f1a..21cbc87f 100644 --- a/platformapi/jdapi/store_page_test.go +++ b/platformapi/jdapi/store_page_test.go @@ -198,3 +198,14 @@ func TestGetJdUserBindStoreIDs(t *testing.T) { } fmt.Println(vv) } + +func TestPrivilegeSearchUser(t *testing.T) { + list, _ := api.PrivilegeSearchUserAll() + for _, v := range list { + fmt.Println(v.LoginName) + } +} + +func TestPrivilegeUpdateJdUserStatus(t *testing.T) { + api.PrivilegeUpdateJdUserStatus(346408, 0) +}