5 changed files with 77 additions and 6 deletions
@ -0,0 +1,71 @@ |
|||
package com.epmet.resi.group.dto.group.result; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
/** |
|||
* @Description 建组申请详情 请求返回实体 与NEI一致 |
|||
* @ClassName ApplyingGroupDetailResult2DTO |
|||
* @Auth wangc |
|||
* @Date 2020-04-30 10:10 |
|||
*/ |
|||
@Data |
|||
public class ApplyingGroupDetailResult2DTO implements Serializable { |
|||
private static final long serialVersionUID = -924420303614397953L; |
|||
|
|||
/** |
|||
* 组Id |
|||
* */ |
|||
private String groupId; |
|||
|
|||
/** |
|||
* 组名称 |
|||
* */ |
|||
private String groupName; |
|||
|
|||
/** |
|||
* 组头像 |
|||
* */ |
|||
private String groupHeadPhoto; |
|||
|
|||
/** |
|||
* 组介绍 |
|||
* */ |
|||
private String groupIntroduction; |
|||
|
|||
/** |
|||
* 申请时间 |
|||
* */ |
|||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8") |
|||
private Date createdTime; |
|||
|
|||
/** |
|||
* 组长名称 |
|||
* */ |
|||
private String groupLeaderName; |
|||
|
|||
/** |
|||
* 已同意该申请approved 、已驳回rejected |
|||
* */ |
|||
private String status; |
|||
|
|||
/** |
|||
* 驳回理由 |
|||
* */ |
|||
private String rejectReason; |
|||
|
|||
|
|||
/** |
|||
* 街道 |
|||
* */ |
|||
private String street; |
|||
|
|||
/** |
|||
* 未读已读标识 unread read |
|||
* */ |
|||
private String readFlag; |
|||
|
|||
} |
Loading…
Reference in new issue