20 changed files with 274 additions and 162 deletions
@ -0,0 +1,47 @@ |
|||
package com.elink.esua.epdc.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author songyunpeng 群成员列表 |
|||
* @Description |
|||
* @create 2020-06-05 |
|||
*/ |
|||
@Data |
|||
public class CurrentUser implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 主键 |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 昵称 |
|||
*/ |
|||
private String nickname; |
|||
|
|||
/** |
|||
* 用户头像 |
|||
*/ |
|||
private String userAvatar; |
|||
|
|||
|
|||
/** |
|||
* 身份标识 0:群员 1:群主 2:副群主 |
|||
*/ |
|||
private String identityFlag; |
|||
|
|||
/** |
|||
* 禁言状态:0-未禁言,1-禁言1天,2-禁言1周,3-禁言一个月,4-永久禁言 |
|||
*/ |
|||
private String bannedFlag; |
|||
|
|||
} |
@ -0,0 +1,48 @@ |
|||
package com.elink.esua.epdc.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @author songyunpeng 群成员列表 |
|||
* @Description |
|||
* @create 2020-06-05 |
|||
*/ |
|||
@Data |
|||
public class OtherUsers implements Serializable { |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 主键 |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 昵称 |
|||
*/ |
|||
private String nickname; |
|||
|
|||
/** |
|||
* 用户头像 |
|||
*/ |
|||
private String userAvatar; |
|||
|
|||
|
|||
/** |
|||
* 身份标识 0:群员 1:群主 2:副群主 |
|||
*/ |
|||
private String identityFlag; |
|||
|
|||
/** |
|||
* 禁言状态:0-未禁言,1-禁言1天,2-禁言1周,3-禁言一个月,4-永久禁言 |
|||
*/ |
|||
private String bannedFlag; |
|||
|
|||
|
|||
} |
@ -0,0 +1,106 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* <p> |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
package com.elink.esua.epdc.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 话题表 |
|||
* |
|||
* @author elink elink@elink-cn.com |
|||
* @since v1.0.0 2020-05-29 |
|||
*/ |
|||
@Data |
|||
public class TopicList implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 主键 |
|||
*/ |
|||
private String id; |
|||
|
|||
|
|||
/** |
|||
* 用户昵称 |
|||
*/ |
|||
private String nickname; |
|||
|
|||
/** |
|||
* 用户头像 |
|||
*/ |
|||
private String userFace; |
|||
|
|||
/** |
|||
* 党员表示 |
|||
*/ |
|||
private String partyMember; |
|||
|
|||
|
|||
/** |
|||
* 话题内容 |
|||
*/ |
|||
private String topicContent; |
|||
|
|||
/** |
|||
* 话题模块 0:事好儿鼓个掌 1:话对捧个场 |
|||
*/ |
|||
private String topicModule; |
|||
|
|||
|
|||
/** |
|||
* 话题地址 |
|||
*/ |
|||
private String topicAddress; |
|||
|
|||
|
|||
/** |
|||
* 评论数 |
|||
*/ |
|||
private Integer commentNum; |
|||
|
|||
/** |
|||
* 点赞数 |
|||
*/ |
|||
private Integer supportNum; |
|||
|
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createdTime; |
|||
|
|||
/** |
|||
* 图片 |
|||
*/ |
|||
private List<String> images; |
|||
|
|||
/** |
|||
* 是否点赞 |
|||
*/ |
|||
private String likeFlag; |
|||
|
|||
/** |
|||
* 评论列表 |
|||
*/ |
|||
private List<PartyTopicCommentResultDTO> comments; |
|||
|
|||
} |
Loading…
Reference in new issue