Commit c955233a authored by shiyu's avatar shiyu

获取用户签名

parent 64319b12
...@@ -10,7 +10,7 @@ import lombok.Data; ...@@ -10,7 +10,7 @@ import lombok.Data;
@Data @Data
public class IMChatRequestDto extends BaseRequestDto implements Entity { public class IMChatRequestDto extends BaseRequestDto implements Entity {
private Long userId; private String userId;
/** /**
* 普通会话的起始时间,第一页填 0。 * 普通会话的起始时间,第一页填 0。
......
...@@ -85,7 +85,7 @@ public class ConversationApi { ...@@ -85,7 +85,7 @@ public class ConversationApi {
String url = imUtil.formatIMUrl(GET_CHAT_LIST_URL); String url = imUtil.formatIMUrl(GET_CHAT_LIST_URL);
OkHttpUtil okHttpUtil = OkHttpUtil.builder().url(url); OkHttpUtil okHttpUtil = OkHttpUtil.builder().url(url);
Map<String, Object> paramMap = new HashMap<>(); Map<String, Object> paramMap = new HashMap<>();
paramMap.put("From_Account", imUtil.formatUserId(imChatRequestDto.getUserId() + "")); paramMap.put("From_Account", imUtil.formatUserId(imChatRequestDto.getUserId()));
paramMap.put("TimeStamp", imChatRequestDto.getTimeStamp()); paramMap.put("TimeStamp", imChatRequestDto.getTimeStamp());
paramMap.put("StartIndex", imChatRequestDto.getStartIndex()); paramMap.put("StartIndex", imChatRequestDto.getStartIndex());
paramMap.put("TopTimeStamp", 0); paramMap.put("TopTimeStamp", 0);
......
...@@ -7,7 +7,7 @@ import lombok.Data; ...@@ -7,7 +7,7 @@ import lombok.Data;
@Data @Data
public class AiAssistantRequestDto extends BaseRequestDto implements Entity { public class AiAssistantRequestDto extends BaseRequestDto implements Entity {
private Long userId; private String userId;
private Integer id; private Integer id;
......
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