Commit c955233a authored by shiyu's avatar shiyu

获取用户签名

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