liyong
5 小时以前 7a23c450f3ac85de7dca1b908de273ff636ce218
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package cn.iocoder.yudao.module.im.dal.dataobject.message.content;
 
import lombok.Data;
 
/**
 * 图片消息内容
 */
@Data
public class ImageMessage {
 
    /**
     * 图片 URL
     */
    private String url;
    /**
     * 缩略图 URL
     */
    private String thumbnailUrl;
    /**
     * 图片宽度
     */
    private Integer width;
    /**
     * 图片高度
     */
    private Integer height;
    /**
     * 图片大小(字节)
     */
    private Long size;
 
    /**
     * 引用消息(可选)
     */
    private QuoteMessage quote;
 
}