123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- package com.caimei.modules.miniprogram.entity;
- import com.caimei.modules.product.entity.Product;
- import com.thinkgem.jeesite.common.persistence.DataEntity;
- import java.util.List;
- /**
- * 微信文章存取Entity
- * @author ye.qin
- * @version 2018-12-17
- */
- public class CmWxArticlePo extends DataEntity<CmWxArticlePo> {
-
- private static final long serialVersionUID = 1L;
- private String source; // 文章来源(1:后台,2:微信公众号)
- private String type; // 文章类型(关联cm_wx_menu)
- private String mediaId; // 素材ID
- private String title; // 标题
- private String author; // 作者
- private String digest; // 摘要
- private String content; // 内容
- private String contentSourceUrl; // 内容链接
- private String thumbMediaId; // 封面图片素材id
- private String showCoverPic; // 是否显示封面,0为false,即不显示,1为true,即显示
- private String url; // 图文页的URL
- private String thumbUrl; // thumbUrl
- private String needOpenComment; // needOpenComment
- private String onlyFansCanComment; // onlyFansCanComment
- private String actType; // 活动类型
- private String actName; // 活动名称
- private String actTime; // 活动开始时间
- private String actEndTime; // 活动结束时间
- private String actStatus; // 活动状态
- private String deployTime; // 发布时间
- private String deployStatus; // 发布状态(1:未发布2:已发布3:已下架)
- private String points; // 点赞数
- private String readings; // 阅读数(访问量)
- private String pv; // 访客数
- private String basePoints; // 基础点赞数
- private String baseReadings; // 基础阅读数
- private String createTime; // createTime
- private String updateTime; // updateTime
- private String articleListJson; //文章json
- private String articleId; //文章ID
- private String sort; //排序
- private String keyWord; //关键字
- private String tagId; //标签ID
- private String tagName; //标签名
- public String getKeyWord() {
- return keyWord;
- }
- public void setKeyWord(String keyWord) {
- this.keyWord = keyWord;
- }
- public String getTagId() {
- return tagId;
- }
- public void setTagId(String tagId) {
- this.tagId = tagId;
- }
- public String getTagName() {
- return tagName;
- }
- public void setTagName(String tagName) {
- this.tagName = tagName;
- }
- public String getArticleId() {
- return articleId;
- }
- public void setArticleId(String articleId) {
- this.articleId = articleId;
- }
- public String getSort() {
- return sort;
- }
- public void setSort(String sort) {
- this.sort = sort;
- }
- public static long getSerialVersionUID() {
- return serialVersionUID;
- }
- public String getSource() {
- return source;
- }
- public void setSource(String source) {
- this.source = source;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getMediaId() {
- return mediaId;
- }
- public void setMediaId(String mediaId) {
- this.mediaId = mediaId;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getAuthor() {
- return author;
- }
- public void setAuthor(String author) {
- this.author = author;
- }
- public String getDigest() {
- return digest;
- }
- public void setDigest(String digest) {
- this.digest = digest;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getContentSourceUrl() {
- return contentSourceUrl;
- }
- public void setContentSourceUrl(String contentSourceUrl) {
- this.contentSourceUrl = contentSourceUrl;
- }
- public String getThumbMediaId() {
- return thumbMediaId;
- }
- public void setThumbMediaId(String thumbMediaId) {
- this.thumbMediaId = thumbMediaId;
- }
- public String getShowCoverPic() {
- return showCoverPic;
- }
- public void setShowCoverPic(String showCoverPic) {
- this.showCoverPic = showCoverPic;
- }
- public String getUrl() {
- return url;
- }
- public void setUrl(String url) {
- this.url = url;
- }
- public String getThumbUrl() {
- return thumbUrl;
- }
- public void setThumbUrl(String thumbUrl) {
- this.thumbUrl = thumbUrl;
- }
- public String getNeedOpenComment() {
- return needOpenComment;
- }
- public void setNeedOpenComment(String needOpenComment) {
- this.needOpenComment = needOpenComment;
- }
- public String getOnlyFansCanComment() {
- return onlyFansCanComment;
- }
- public void setOnlyFansCanComment(String onlyFansCanComment) {
- this.onlyFansCanComment = onlyFansCanComment;
- }
- public String getActType() {
- return actType;
- }
- public void setActType(String actType) {
- this.actType = actType;
- }
- public String getActName() {
- return actName;
- }
- public void setActName(String actName) {
- this.actName = actName;
- }
- public String getActTime() {
- return actTime;
- }
- public void setActTime(String actTime) {
- this.actTime = actTime;
- }
- public String getActEndTime() {
- return actEndTime;
- }
- public void setActEndTime(String actEndTime) {
- this.actEndTime = actEndTime;
- }
- public String getActStatus() {
- return actStatus;
- }
- public void setActStatus(String actStatus) {
- this.actStatus = actStatus;
- }
- public String getDeployTime() {
- return deployTime;
- }
- public void setDeployTime(String deployTime) {
- this.deployTime = deployTime;
- }
- public String getDeployStatus() {
- return deployStatus;
- }
- public void setDeployStatus(String deployStatus) {
- this.deployStatus = deployStatus;
- }
- public String getPoints() {
- return points;
- }
- public void setPoints(String points) {
- this.points = points;
- }
- public String getReadings() {
- return readings;
- }
- public void setReadings(String readings) {
- this.readings = readings;
- }
- public String getPv() {
- return pv;
- }
- public void setPv(String pv) {
- this.pv = pv;
- }
- public String getBasePoints() {
- return basePoints;
- }
- public void setBasePoints(String basePoints) {
- this.basePoints = basePoints;
- }
- public String getBaseReadings() {
- return baseReadings;
- }
- public void setBaseReadings(String baseReadings) {
- this.baseReadings = baseReadings;
- }
- public String getCreateTime() {
- return createTime;
- }
- public void setCreateTime(String createTime) {
- this.createTime = createTime;
- }
- public String getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(String updateTime) {
- this.updateTime = updateTime;
- }
- public String getArticleListJson() {
- return articleListJson;
- }
- public void setArticleListJson(String articleListJson) {
- this.articleListJson = articleListJson;
- }
- }
|