CommentPicsBean.java
677 Bytes
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 com.wd.foundation.bean.response;
import com.wd.foundation.bean.base.BaseBean;
import java.util.List;
/**
* @author baozhaoxin
* @version [V1.0.0, 2024/6/12]
* @since V1.0.0
*/
public class CommentPicsBean extends BaseBean {
private String md5;
/**
* 定制化表情包
*/
private List<String> commentPicList;
public String getMd5() {
return md5;
}
public void setMd5(String md5) {
this.md5 = md5;
}
public List<String> getCommentPicList() {
return commentPicList;
}
public void setCommentPicList(List<String> commentPicList) {
this.commentPicList = commentPicList;
}
}