|
|
@@ -37,7 +37,7 @@ func SaveCentralKitchenForSchoolUserIdentity(c *gin.Context) { |
|
|
|
e.OutErr(c, e.ERR_DB_ORM, err.Error()) |
|
|
|
return |
|
|
|
} |
|
|
|
if isHasUserIdentity.Uid != 0 && isHasUserIdentity.Uid != user.Id { |
|
|
|
if isHasUserIdentity != nil && isHasUserIdentity.Uid != 0 && isHasUserIdentity.Uid != user.Id { |
|
|
|
e.OutErr(c, e.ERR, "当前身份信息已被绑定使用") |
|
|
|
return |
|
|
|
} |
|
|
@@ -159,7 +159,7 @@ func SaveSelfSupportForSchoolUserIdentity(c *gin.Context) { |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
if isHasUserIdentity.Uid != 0 && isHasUserIdentity.Uid != user.Id { |
|
|
|
if isHasUserIdentity != nil && isHasUserIdentity.Uid != 0 && isHasUserIdentity.Uid != user.Id { |
|
|
|
e.OutErr(c, e.ERR, "当前身份信息已被绑定使用") |
|
|
|
return |
|
|
|
} |
|
|
|