瀏覽代碼

fix:新增外部id的校验

Roc 1 年之前
父節點
當前提交
71a45af2d6
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      logic/xiangyu/user.go

+ 6 - 0
logic/xiangyu/user.go

@@ -372,6 +372,12 @@ func handleUser(xyUserInfo xiangyu.UserData, xyUserId string, departmentMap map[
 			userInfo.RealName = xyUserInfo.FullName
 		}
 
+		// 外部id
+		if userInfo.OutID == `` {
+			updateColList = append(updateColList, "OutID")
+			userInfo.OutID = xyUserId
+		}
+
 		if len(updateColList) > 0 {
 			updateColList = append(updateColList, "LastUpdatedTime")
 			userInfo.LastUpdatedTime = time.Now()