Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
haoban3.0
haoban-manage3.0
Commits
87d1649e
Commit
87d1649e
authored
Oct 21, 2024
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
聊天记录
parent
c8536476
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
7 deletions
+14
-7
GroupChatChatDetailVO.java
.../gic/haoban/manage/web/vo/chat/GroupChatChatDetailVO.java
+3
-3
SingleChatDetailVO.java
...com/gic/haoban/manage/web/vo/chat/SingleChatDetailVO.java
+8
-1
UserChatDetailLogVO.java
...om/gic/haoban/manage/web/vo/chat/UserChatDetailLogVO.java
+3
-3
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/chat/GroupChatChatDetailVO.java
View file @
87d1649e
...
...
@@ -99,13 +99,13 @@ public class GroupChatChatDetailVO extends StoreGroupCommonVO implements Seriali
*/
private
String
msgType
;
private
Integer
rn
;
private
Long
rn
;
public
Integer
getRn
()
{
public
Long
getRn
()
{
return
rn
;
}
public
void
setRn
(
Integer
rn
)
{
public
void
setRn
(
Long
rn
)
{
this
.
rn
=
rn
;
}
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/chat/SingleChatDetailVO.java
View file @
87d1649e
...
...
@@ -88,8 +88,15 @@ public class SingleChatDetailVO extends StoreGroupCommonVO implements Serializab
*/
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
()
{
return
memberId
;
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/chat/UserChatDetailLogVO.java
View file @
87d1649e
...
...
@@ -11,7 +11,7 @@ public class UserChatDetailLogVO implements Serializable {
private
String
sendTime
;
// 排序值
private
Integer
rn
;
private
Long
rn
;
// 发送人名字
private
String
sendName
;
...
...
@@ -35,11 +35,11 @@ public class UserChatDetailLogVO implements Serializable {
this
.
sendTime
=
sendTime
;
}
public
Integer
getRn
()
{
public
Long
getRn
()
{
return
rn
;
}
public
void
setRn
(
Integer
rn
)
{
public
void
setRn
(
Long
rn
)
{
this
.
rn
=
rn
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment