| | |
| | | package com.yeshi.fanli.entity.dynamic; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | @Expose |
| | | @Field("imgList") |
| | | private List<ImgInfo> imgList; // 图片信息 |
| | | private List<ImgInfo> imgList = new ArrayList<ImgInfo>(); // 图片信息 |
| | | |
| | | |
| | | @Field("shareNumReal") |
| | |
| | | |
| | | @Expose |
| | | @Field("comments") |
| | | private List<CommentInfo> comments; // 评论信息 |
| | | private List<CommentInfo> comments = new ArrayList<CommentInfo>(); // 评论信息 |
| | | |
| | | @Expose |
| | | @Field("publishTime") |
| | |
| | | @Field("mainPicNum") |
| | | private Integer mainPicNum; // 图片主图 |
| | | |
| | | @Field("dynamicType") |
| | | private Integer dynamicType; // 1发圈 2素材 |
| | | |
| | | |
| | | private String startTimeChar; |
| | | private String endTimeChar; |
| | | |
| | | // 备注 |
| | | private String remarks; |
| | | |
| | | |
| | | public String getId() { |
| | | return id; |
| | |
| | | public void setType(EvaluateEnum type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | |
| | | public Integer getDynamicType() { |
| | | return dynamicType; |
| | | } |
| | | |
| | | public void setDynamicType(Integer dynamicType) { |
| | | this.dynamicType = dynamicType; |
| | | } |
| | | |
| | | public String getRemarks() { |
| | | return remarks; |
| | | } |
| | | |
| | | public void setRemarks(String remarks) { |
| | | this.remarks = remarks; |
| | | } |
| | | } |