This commit is contained in:
邹宗楠
2023-01-30 11:22:02 +08:00
parent 2dcecd6ff0
commit a67c57c92e
3 changed files with 83 additions and 2 deletions

View File

@@ -105,7 +105,7 @@ func TestCreateSession(t *testing.T) {
// 发送消息到企业微信
func TestSendMsg(t *testing.T) {
msg := &EnterpriseSendMsgReq{
Touser: "HeJiaMeng2",
Touser: "LiuLei",
Toparty: "",
Totag: "",
Msgtype: "textcard",
@@ -126,6 +126,6 @@ func TestSendMsg(t *testing.T) {
// 获取员工信息
func TestGetUserId(t *testing.T) {
phone, err := api.GetUserIdByMobile("15928865396")
phone, err := api.GetUserIdByMobile("18981810340")
globals.SugarLogger.Debugf("phone := %s,err :=%s", phone, err)
}