11 changed files with 408 additions and 8 deletions
@ -0,0 +1,28 @@ |
|||
package com.epmet.resi.group.dto.group.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/4/21 上午9:43 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class UserReadFlagResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -5727870985731706332L; |
|||
|
|||
/** |
|||
* 活动,通知 ID |
|||
*/ |
|||
private String id; |
|||
|
|||
private String userId; |
|||
|
|||
/** |
|||
* 阅读状态,read:已读,un_read:未读 |
|||
*/ |
|||
private String readFlag; |
|||
} |
@ -0,0 +1,26 @@ |
|||
package com.epmet.resi.group.dto.group.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/4/21 上午9:43 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class UserUnReadResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -5727870085731706332L; |
|||
|
|||
/** |
|||
* 活动,通知 ID |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 未读数量 |
|||
*/ |
|||
private Integer unRead; |
|||
} |
@ -0,0 +1,28 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/4/20 下午5:51 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class UserInfoResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 6003815400792121273L; |
|||
|
|||
private String userId; |
|||
|
|||
/** |
|||
* 发布者的全称(街道-姓氏先生/女士)【专项组显示真实名】 |
|||
*/ |
|||
private String releaseUserName; |
|||
|
|||
/** |
|||
* 话题发布者的头像Url |
|||
*/ |
|||
private String releaseUserHeadPhoto; |
|||
} |
Loading…
Reference in new issue