Commit 544bcd9a by 罗长华

会话表增加 是否禁止群成员互加好友 是否禁止发红包 是否禁止发图片 是否禁止发链接 四个字段

parent 05b199c8
......@@ -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;
}
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