Commit 676136fd by Shadow

修复修改用户拓展字段接口报错的问题

parent 42422d90
......@@ -2,6 +2,8 @@ package com.wecloud.im.param;
import lombok.Data;
import java.util.Map;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
......@@ -18,5 +20,5 @@ public class ModifyUserAttributesParam {
private String userId;
@NotNull(message = "attributes 不能为空")
private String attributes;
private Map<String, Object> attributes;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment