All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.ContentItem Maven / Gradle / Ivy

package com.alipay.api.domain;

import java.util.List;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;

/**
 * 内容实体
 *
 * @author auto create
 * @since 1.0, 2022-11-25 11:45:01
 */
public class ContentItem extends AlipayObject {

	private static final long serialVersionUID = 4577457717115229113L;

	/**
	 * 作者粉丝数
	 */
	@ApiField("author_fans")
	private Long authorFans;

	/**
	 * 作者ID
	 */
	@ApiField("author_id")
	private String authorId;

	/**
	 * 作者评级
	 */
	@ApiField("author_level")
	private String authorLevel;

	/**
	 * 作者名
	 */
	@ApiField("author_name")
	private String authorName;

	/**
	 * 内容的类目,内容不同级类目之间用$##$分隔,且自左向右类目层级逐渐细化。类目值搜索全部传名称,举例如“美食分享$##$中餐$##$川菜”。某一段为空时直接传空字符串,如第二段为空, 则传“美食分享$##$$##$川菜”。如果有多个类目,多个类目之间用,分割。
	 */
	@ApiField("cate")
	private String cate;

	/**
	 * 内容类目的层级数。cate_cnt必须等于len(cate.split('$##$')),用于校验cate数据。所有内容的分类体系应该一致,即对于所有商品来说,cate_cnt应该相同
	 */
	@ApiField("cate_cnt")
	private Long cateCnt;

	/**
	 * 内容累计收藏数
	 */
	@ApiField("collect_cnt")
	private String collectCnt;

	/**
	 * 所属话题id
	 */
	@ApiField("collection")
	private String collection;

	/**
	 * 内容累计评论次数
	 */
	@ApiField("comment_cnt")
	private String commentCnt;

	/**
	 * 内容描述,用于搜索
	 */
	@ApiField("content")
	private String content;

	/**
	 * 内容失效时间
	 */
	@ApiField("copyright_end")
	private String copyrightEnd;

	/**
	 * 内容生效时间
	 */
	@ApiField("copyright_start")
	private String copyrightStart;

	/**
	 * 创建时间 单位为毫秒
	 */
	@ApiField("create_time")
	private String createTime;

	/**
	 * 详情页中图片的数量
	 */
	@ApiField("detail_pic_num")
	private Long detailPicNum;

	/**
	 * 支付宝小程序的详情页面
	 */
	@ApiField("detail_url")
	private String detailUrl;

	/**
	 * 内容过期时间戳,精确到毫秒
	 */
	@ApiField("expire_time")
	private String expireTime;

	/**
	 * 内容的唯一ID
	 */
	@ApiField("id")
	private String id;

	/**
	 * 视频或文章的关键描述词
	 */
	@ApiListField("key_word")
	@ApiField("string")
	private List keyWord;

	/**
	 * 地域tag
	 */
	@ApiField("location_tag")
	private String locationTag;

	/**
	 * 商品归属的小程序ID
	 */
	@ApiField("mini_app_id")
	private String miniAppId;

	/**
	 * 可选 图片url,如果多张图,头图放在前面,使用$##$链接多个url
	 */
	@ApiField("pic_url")
	private String picUrl;

	/**
	 * 商品累计点赞次数
	 */
	@ApiField("praise_cnt")
	private Long praiseCnt;

	/**
	 * 精确到毫秒,如1520327038000
	 */
	@ApiField("pub_time")
	private String pubTime;

	/**
	 * 8.8
	 */
	@ApiField("rating")
	private String rating;

	/**
	 * 相关商品id,多个使用$##$来区分
	 */
	@ApiField("related_goods_ids")
	private String relatedGoodsIds;

	/**
	 * 内容累计分享次数
	 */
	@ApiField("share_cnt")
	private Long shareCnt;

	/**
	 * 内容来源类型,如自然up主
	 */
	@ApiField("source_id")
	private String sourceId;

	/**
	 * 状态 1为有效 0为无效
	 */
	@ApiField("status")
	private Long status;

	/**
	 * 内容标签,如首页展示标签“时政热点”,“财经热点”。多值示例:“时政热点,时财经"
	 */
	@ApiField("tags")
	private String tags;

	/**
	 * 内容标题,用于搜索
	 */
	@ApiField("title")
	private String title;

	/**
	 * 所属话题tag
	 */
	@ApiField("topic_tag")
	private String topicTag;

	/**
	 * 内容的类别,如short_doc/video
	 */
	@ApiField("type")
	private String type;

	/**
	 * 内容信息更新时间戳,精确到毫秒,如1520327038000
	 */
	@ApiField("update_time")
	private String updateTime;

	/**
	 * 视频时长 单位为毫秒
	 */
	@ApiField("video_duration")
	private String videoDuration;

	/**
	 * 可选 视频url。如果有多个,使用$##$链接多个url
	 */
	@ApiField("video_url")
	private String videoUrl;

	public Long getAuthorFans() {
		return this.authorFans;
	}
	public void setAuthorFans(Long authorFans) {
		this.authorFans = authorFans;
	}

	public String getAuthorId() {
		return this.authorId;
	}
	public void setAuthorId(String authorId) {
		this.authorId = authorId;
	}

	public String getAuthorLevel() {
		return this.authorLevel;
	}
	public void setAuthorLevel(String authorLevel) {
		this.authorLevel = authorLevel;
	}

	public String getAuthorName() {
		return this.authorName;
	}
	public void setAuthorName(String authorName) {
		this.authorName = authorName;
	}

	public String getCate() {
		return this.cate;
	}
	public void setCate(String cate) {
		this.cate = cate;
	}

	public Long getCateCnt() {
		return this.cateCnt;
	}
	public void setCateCnt(Long cateCnt) {
		this.cateCnt = cateCnt;
	}

	public String getCollectCnt() {
		return this.collectCnt;
	}
	public void setCollectCnt(String collectCnt) {
		this.collectCnt = collectCnt;
	}

	public String getCollection() {
		return this.collection;
	}
	public void setCollection(String collection) {
		this.collection = collection;
	}

	public String getCommentCnt() {
		return this.commentCnt;
	}
	public void setCommentCnt(String commentCnt) {
		this.commentCnt = commentCnt;
	}

	public String getContent() {
		return this.content;
	}
	public void setContent(String content) {
		this.content = content;
	}

	public String getCopyrightEnd() {
		return this.copyrightEnd;
	}
	public void setCopyrightEnd(String copyrightEnd) {
		this.copyrightEnd = copyrightEnd;
	}

	public String getCopyrightStart() {
		return this.copyrightStart;
	}
	public void setCopyrightStart(String copyrightStart) {
		this.copyrightStart = copyrightStart;
	}

	public String getCreateTime() {
		return this.createTime;
	}
	public void setCreateTime(String createTime) {
		this.createTime = createTime;
	}

	public Long getDetailPicNum() {
		return this.detailPicNum;
	}
	public void setDetailPicNum(Long detailPicNum) {
		this.detailPicNum = detailPicNum;
	}

	public String getDetailUrl() {
		return this.detailUrl;
	}
	public void setDetailUrl(String detailUrl) {
		this.detailUrl = detailUrl;
	}

	public String getExpireTime() {
		return this.expireTime;
	}
	public void setExpireTime(String expireTime) {
		this.expireTime = expireTime;
	}

	public String getId() {
		return this.id;
	}
	public void setId(String id) {
		this.id = id;
	}

	public List getKeyWord() {
		return this.keyWord;
	}
	public void setKeyWord(List keyWord) {
		this.keyWord = keyWord;
	}

	public String getLocationTag() {
		return this.locationTag;
	}
	public void setLocationTag(String locationTag) {
		this.locationTag = locationTag;
	}

	public String getMiniAppId() {
		return this.miniAppId;
	}
	public void setMiniAppId(String miniAppId) {
		this.miniAppId = miniAppId;
	}

	public String getPicUrl() {
		return this.picUrl;
	}
	public void setPicUrl(String picUrl) {
		this.picUrl = picUrl;
	}

	public Long getPraiseCnt() {
		return this.praiseCnt;
	}
	public void setPraiseCnt(Long praiseCnt) {
		this.praiseCnt = praiseCnt;
	}

	public String getPubTime() {
		return this.pubTime;
	}
	public void setPubTime(String pubTime) {
		this.pubTime = pubTime;
	}

	public String getRating() {
		return this.rating;
	}
	public void setRating(String rating) {
		this.rating = rating;
	}

	public String getRelatedGoodsIds() {
		return this.relatedGoodsIds;
	}
	public void setRelatedGoodsIds(String relatedGoodsIds) {
		this.relatedGoodsIds = relatedGoodsIds;
	}

	public Long getShareCnt() {
		return this.shareCnt;
	}
	public void setShareCnt(Long shareCnt) {
		this.shareCnt = shareCnt;
	}

	public String getSourceId() {
		return this.sourceId;
	}
	public void setSourceId(String sourceId) {
		this.sourceId = sourceId;
	}

	public Long getStatus() {
		return this.status;
	}
	public void setStatus(Long status) {
		this.status = status;
	}

	public String getTags() {
		return this.tags;
	}
	public void setTags(String tags) {
		this.tags = tags;
	}

	public String getTitle() {
		return this.title;
	}
	public void setTitle(String title) {
		this.title = title;
	}

	public String getTopicTag() {
		return this.topicTag;
	}
	public void setTopicTag(String topicTag) {
		this.topicTag = topicTag;
	}

	public String getType() {
		return this.type;
	}
	public void setType(String type) {
		this.type = type;
	}

	public String getUpdateTime() {
		return this.updateTime;
	}
	public void setUpdateTime(String updateTime) {
		this.updateTime = updateTime;
	}

	public String getVideoDuration() {
		return this.videoDuration;
	}
	public void setVideoDuration(String videoDuration) {
		this.videoDuration = videoDuration;
	}

	public String getVideoUrl() {
		return this.videoUrl;
	}
	public void setVideoUrl(String videoUrl) {
		this.videoUrl = videoUrl;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy