forked from rongchao/epmet-cloud-rizhao
3 changed files with 38 additions and 9 deletions
@ -0,0 +1,26 @@ |
|||
package com.epmet.resi.group.dto.topic.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.LinkedList; |
|||
|
|||
/** |
|||
* @Author sun |
|||
* @Description 获取话题附件信息-接口返参 |
|||
*/ |
|||
@Data |
|||
public class TopicFileResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -8606257390921799432L; |
|||
|
|||
/** |
|||
* 文件Url |
|||
*/ |
|||
private String url; |
|||
/** |
|||
* 语音或视频文件的时长,单位毫秒 |
|||
*/ |
|||
private Integer duration; |
|||
|
|||
} |
Loading…
Reference in new issue