Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wecloud_im_server
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hewei
wecloud_im_server
Commits
544bcd9a
Commit
544bcd9a
authored
Apr 27, 2022
by
罗长华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
会话表增加 是否禁止群成员互加好友 是否禁止发红包 是否禁止发图片 是否禁止发链接 四个字段
parent
05b199c8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
core/src/main/java/com/wecloud/im/entity/ImConversation.java
+16
-0
docs/db/wecloud_im.sql
+0
-0
No files found.
core/src/main/java/com/wecloud/im/entity/ImConversation.java
View file @
544bcd9a
...
...
@@ -12,6 +12,7 @@ import java.util.Date;
import
javax.validation.constraints.NotNull
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
/**
...
...
@@ -71,4 +72,19 @@ public class ImConversation extends BaseEntity {
@ApiModelProperty
(
"禁言开关 1-未禁言 2-禁言"
)
private
Integer
muted
;
@TableField
(
"is_forbid_add_friend"
)
@ApiModelProperty
(
"禁止互加好友"
)
private
Boolean
forbidAddFriend
;
@TableField
(
"is_forbid_send_red_packets"
)
@ApiModelProperty
(
"禁止发红包"
)
private
Boolean
forbidSendRedPackets
;
@TableField
(
"is_forbid_send_pic"
)
@ApiModelProperty
(
"禁止发图片"
)
private
Boolean
forbidSendPic
;
@TableField
(
"is_forbid_send_link"
)
@ApiModelProperty
(
"禁止发链接"
)
private
Boolean
forbidSendLink
;
}
docs/db/wecloud_im.sql
View file @
544bcd9a
This diff is collapsed.
Click to expand it.
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