Unverified Commit 4c203690 authored by yu's avatar yu Committed by GitHub

feat: add msgReadTime property to api (#33)

parent 99d7ca30
...@@ -22,7 +22,7 @@ Add the Maven dependency: ...@@ -22,7 +22,7 @@ Add the Maven dependency:
<dependency> <dependency>
<groupId>io.github.doocs</groupId> <groupId>io.github.doocs</groupId>
<artifactId>im-server-sdk-java</artifactId> <artifactId>im-server-sdk-java</artifactId>
<version>0.0.7</version> <version>0.0.8</version>
</dependency> </dependency>
``` ```
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<groupId>io.github.doocs</groupId> <groupId>io.github.doocs</groupId>
<artifactId>im-server-sdk-java</artifactId> <artifactId>im-server-sdk-java</artifactId>
<version>0.0.7</version> <version>0.0.8</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>qcloud-im-server-sdk-java</name> <name>qcloud-im-server-sdk-java</name>
......
...@@ -15,6 +15,9 @@ public class AdminSetMsgReadRequest extends GenericRequest { ...@@ -15,6 +15,9 @@ public class AdminSetMsgReadRequest extends GenericRequest {
@JsonProperty("Peer_Account") @JsonProperty("Peer_Account")
private String peerAccount; private String peerAccount;
@JsonProperty("MsgReadTime")
private Integer msgReadTime;
public String getReportAccount() { public String getReportAccount() {
return reportAccount; return reportAccount;
} }
...@@ -30,4 +33,12 @@ public class AdminSetMsgReadRequest extends GenericRequest { ...@@ -30,4 +33,12 @@ public class AdminSetMsgReadRequest extends GenericRequest {
public void setPeerAccount(String peerAccount) { public void setPeerAccount(String peerAccount) {
this.peerAccount = peerAccount; this.peerAccount = peerAccount;
} }
public Integer getMsgReadTime() {
return msgReadTime;
}
public void setMsgReadTime(Integer msgReadTime) {
this.msgReadTime = msgReadTime;
}
} }
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