6 changed files with 135 additions and 12 deletions
@ -0,0 +1,33 @@ |
|||||
|
package com.epmet.dataaggre.dto.message.result; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.FileCommonDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 我收到的消息列表 |
||||
|
* @Author yinzuomei |
||||
|
* @Date 2021/8/20 6:55 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class MyReceivedResDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 2602131254448130443L; |
||||
|
private String infoId; |
||||
|
private String publishStaffName; |
||||
|
private String publishStaffOrgName; |
||||
|
private String headPhoto; |
||||
|
private String content; |
||||
|
private Date publishTime; |
||||
|
/** |
||||
|
* 附件列表 列表默认返回一个 |
||||
|
*/ |
||||
|
private List<FileCommonDTO> attachmentList; |
||||
|
private Boolean readFlag; |
||||
|
private String publishStaffGender; |
||||
|
|
||||
|
private String firstAttId; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue