Commit 87d1649e by 徐高华

聊天记录

parent c8536476
...@@ -99,13 +99,13 @@ public class GroupChatChatDetailVO extends StoreGroupCommonVO implements Seriali ...@@ -99,13 +99,13 @@ public class GroupChatChatDetailVO extends StoreGroupCommonVO implements Seriali
*/ */
private String msgType; private String msgType;
private Integer rn ; private Long rn ;
public Integer getRn() { public Long getRn() {
return rn; return rn;
} }
public void setRn(Integer rn) { public void setRn(Long rn) {
this.rn = rn; this.rn = rn;
} }
......
...@@ -88,8 +88,15 @@ public class SingleChatDetailVO extends StoreGroupCommonVO implements Serializab ...@@ -88,8 +88,15 @@ public class SingleChatDetailVO extends StoreGroupCommonVO implements Serializab
*/ */
private String sendTime; private String sendTime;
private Integer rn ; private Long rn ;
public Long getRn() {
return rn;
}
public void setRn(Long rn) {
this.rn = rn;
}
public String getMemberId() { public String getMemberId() {
return memberId; return memberId;
......
...@@ -11,7 +11,7 @@ public class UserChatDetailLogVO implements Serializable { ...@@ -11,7 +11,7 @@ public class UserChatDetailLogVO implements Serializable {
private String sendTime ; private String sendTime ;
// 排序值 // 排序值
private Integer rn ; private Long rn ;
// 发送人名字 // 发送人名字
private String sendName ; private String sendName ;
...@@ -35,11 +35,11 @@ public class UserChatDetailLogVO implements Serializable { ...@@ -35,11 +35,11 @@ public class UserChatDetailLogVO implements Serializable {
this.sendTime = sendTime; this.sendTime = sendTime;
} }
public Integer getRn() { public Long getRn() {
return rn; return rn;
} }
public void setRn(Integer rn) { public void setRn(Long rn) {
this.rn = rn; this.rn = rn;
} }
......
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