|
@ -0,0 +1,364 @@
|
|
|
|
|
|
|
|
package com.yihu.wlyy.web.third.jkedu.vo;
|
|
|
|
|
|
|
|
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by Administrator on 2017/9/29.
|
|
|
|
*/
|
|
|
|
|
|
|
|
@ApiModel(description = "公众号--医生健康文章")
|
|
|
|
public class ArticleModel {
|
|
|
|
//文章ID
|
|
|
|
@ApiModelProperty(value = "文章ID", required = false, access = "response")
|
|
|
|
private String articleId;
|
|
|
|
|
|
|
|
//文章标题
|
|
|
|
@ApiModelProperty(value = "文章标题", required = false, access = "response")
|
|
|
|
private String articleTitle;
|
|
|
|
|
|
|
|
//文章内容
|
|
|
|
@ApiModelProperty(value = "文章内容", required = false, access = "response")
|
|
|
|
private String articleContent;
|
|
|
|
|
|
|
|
//排序
|
|
|
|
@ApiModelProperty(value = "文章排序", required = false, access = "response")
|
|
|
|
private int articleOrder;
|
|
|
|
|
|
|
|
//1、正常、2删除
|
|
|
|
@ApiModelProperty(value = "文章状态", required = false, access = "response")
|
|
|
|
private int articleState;
|
|
|
|
|
|
|
|
//文章所属单位名称
|
|
|
|
@ApiModelProperty(value = "文章所属单位名称", required = false, access = "response")
|
|
|
|
private String orgName;
|
|
|
|
|
|
|
|
//文章来源(填写发布人所在的机构)
|
|
|
|
@ApiModelProperty(value = "文章来源", required = false, access = "response")
|
|
|
|
private String articleSource;
|
|
|
|
|
|
|
|
//文章所属单位ID
|
|
|
|
// @ApiModelProperty(value = "文章ID", required = false, access = "response")
|
|
|
|
//private String OgId;
|
|
|
|
|
|
|
|
//1、重要、2紧急、3、一般
|
|
|
|
@ApiModelProperty(value = "文章级别", required = false, access = "response")
|
|
|
|
private int articlelevel;
|
|
|
|
|
|
|
|
//封面图
|
|
|
|
@ApiModelProperty(value = "封面图", required = false, access = "response")
|
|
|
|
private String articleCover;
|
|
|
|
|
|
|
|
//插入时间
|
|
|
|
@ApiModelProperty(value = "插入时间", required = false, access = "response")
|
|
|
|
private Date insertTime;
|
|
|
|
|
|
|
|
//最后更新时间
|
|
|
|
@ApiModelProperty(value = "最后更新时间", required = false, access = "response")
|
|
|
|
private Date updateTime;
|
|
|
|
|
|
|
|
//创建人
|
|
|
|
@ApiModelProperty(value = "创建人", required = false, access = "response")
|
|
|
|
private String operatorName;
|
|
|
|
|
|
|
|
//创建人ID
|
|
|
|
@ApiModelProperty(value = "创建人ID", required = false, access = "response")
|
|
|
|
private String operatorId;
|
|
|
|
|
|
|
|
//1级类别id
|
|
|
|
@ApiModelProperty(value = "1级类别id", required = false, access = "response")
|
|
|
|
private String firstLevelCategoryId;
|
|
|
|
|
|
|
|
//1级类别名称
|
|
|
|
@ApiModelProperty(value = "1级类别名称", required = false, access = "response")
|
|
|
|
private String firstLevelCategoryName;
|
|
|
|
|
|
|
|
//2级类别ID
|
|
|
|
@ApiModelProperty(value = "2级类别ID", required = false, access = "response")
|
|
|
|
private String secondLevelCategoryId;
|
|
|
|
|
|
|
|
//2级类别名称
|
|
|
|
@ApiModelProperty(value = "2级类别名称", required = false, access = "response")
|
|
|
|
private String secondLevelCategoryName;
|
|
|
|
|
|
|
|
//认证单位
|
|
|
|
@ApiModelProperty(value = "认证单位", required = false, access = "response")
|
|
|
|
private String authentication;
|
|
|
|
|
|
|
|
//认证单位ID
|
|
|
|
@ApiModelProperty(value = "认证单位ID", required = false, access = "response")
|
|
|
|
private String authenticationId;
|
|
|
|
|
|
|
|
//是否认证 1已认证2、未认证
|
|
|
|
@ApiModelProperty(value = "是否认证", required = false, access = "response")
|
|
|
|
private int isAuthentication;
|
|
|
|
|
|
|
|
//1、视频 2、图文3、音频、 4 、精选问答
|
|
|
|
@ApiModelProperty(value = "文章类型", required = false, access = "response")
|
|
|
|
private String articleType;
|
|
|
|
|
|
|
|
//操作人所在科室
|
|
|
|
@ApiModelProperty(value = "操作人所在科室", required = false, access = "response")
|
|
|
|
private String deptName;
|
|
|
|
|
|
|
|
//等级职称
|
|
|
|
@ApiModelProperty(value = "等级职称", required = false, access = "response")
|
|
|
|
private String titleLevel;
|
|
|
|
|
|
|
|
//操作人头像
|
|
|
|
@ApiModelProperty(value = "操作人头像", required = false, access = "response")
|
|
|
|
private String operatorImg;
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "浏览数", required = false, access = "response")
|
|
|
|
private int browseNumbere;//浏览数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "点赞数", required = false, access = "response")
|
|
|
|
private int pointNumber;//点赞数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "评论数", required = false, access = "response")
|
|
|
|
private int commentNumber;//评论数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "分享数", required = false, access = "response")
|
|
|
|
private int shareNumber;//分享数
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "收藏数", required = false, access = "response")
|
|
|
|
private int collectionNumber;//收藏数
|
|
|
|
|
|
|
|
public String getArticleId() {
|
|
|
|
return articleId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticleId(String articleId) {
|
|
|
|
this.articleId = articleId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getArticleTitle() {
|
|
|
|
return articleTitle;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticleTitle(String articleTitle) {
|
|
|
|
this.articleTitle = articleTitle;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getArticleContent() {
|
|
|
|
return articleContent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticleContent(String articleContent) {
|
|
|
|
this.articleContent = articleContent;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getArticleOrder() {
|
|
|
|
return articleOrder;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticleOrder(int articleOrder) {
|
|
|
|
this.articleOrder = articleOrder;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getArticleState() {
|
|
|
|
return articleState;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticleState(int articleState) {
|
|
|
|
this.articleState = articleState;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOrgName() {
|
|
|
|
return orgName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOrgName(String orgName) {
|
|
|
|
this.orgName = orgName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getArticleSource() {
|
|
|
|
return articleSource;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticleSource(String articleSource) {
|
|
|
|
this.articleSource = articleSource;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getArticlelevel() {
|
|
|
|
return articlelevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticlelevel(int articlelevel) {
|
|
|
|
this.articlelevel = articlelevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getArticleCover() {
|
|
|
|
return articleCover;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticleCover(String articleCover) {
|
|
|
|
this.articleCover = articleCover;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getInsertTime() {
|
|
|
|
return insertTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInsertTime(Date insertTime) {
|
|
|
|
this.insertTime = insertTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Date getUpdateTime() {
|
|
|
|
return updateTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
|
|
this.updateTime = updateTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOperatorName() {
|
|
|
|
return operatorName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOperatorName(String operatorName) {
|
|
|
|
this.operatorName = operatorName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOperatorId() {
|
|
|
|
return operatorId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOperatorId(String operatorId) {
|
|
|
|
this.operatorId = operatorId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFirstLevelCategoryId() {
|
|
|
|
return firstLevelCategoryId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFirstLevelCategoryId(String firstLevelCategoryId) {
|
|
|
|
this.firstLevelCategoryId = firstLevelCategoryId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFirstLevelCategoryName() {
|
|
|
|
return firstLevelCategoryName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFirstLevelCategoryName(String firstLevelCategoryName) {
|
|
|
|
this.firstLevelCategoryName = firstLevelCategoryName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSecondLevelCategoryId() {
|
|
|
|
return secondLevelCategoryId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSecondLevelCategoryId(String secondLevelCategoryId) {
|
|
|
|
this.secondLevelCategoryId = secondLevelCategoryId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getSecondLevelCategoryName() {
|
|
|
|
return secondLevelCategoryName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSecondLevelCategoryName(String secondLevelCategoryName) {
|
|
|
|
this.secondLevelCategoryName = secondLevelCategoryName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAuthentication() {
|
|
|
|
return authentication;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAuthentication(String authentication) {
|
|
|
|
this.authentication = authentication;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getAuthenticationId() {
|
|
|
|
return authenticationId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAuthenticationId(String authenticationId) {
|
|
|
|
this.authenticationId = authenticationId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getIsAuthentication() {
|
|
|
|
return isAuthentication;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIsAuthentication(int isAuthentication) {
|
|
|
|
this.isAuthentication = isAuthentication;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getArticleType() {
|
|
|
|
return articleType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setArticleType(String articleType) {
|
|
|
|
this.articleType = articleType;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDeptName() {
|
|
|
|
return deptName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDeptName(String deptName) {
|
|
|
|
this.deptName = deptName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTitleLevel() {
|
|
|
|
return titleLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTitleLevel(String titleLevel) {
|
|
|
|
this.titleLevel = titleLevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getOperatorImg() {
|
|
|
|
return operatorImg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOperatorImg(String operatorImg) {
|
|
|
|
this.operatorImg = operatorImg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getBrowseNumbere() {
|
|
|
|
return browseNumbere;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBrowseNumbere(int browseNumbere) {
|
|
|
|
this.browseNumbere = browseNumbere;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getPointNumber() {
|
|
|
|
return pointNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPointNumber(int pointNumber) {
|
|
|
|
this.pointNumber = pointNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getCommentNumber() {
|
|
|
|
return commentNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCommentNumber(int commentNumber) {
|
|
|
|
this.commentNumber = commentNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getShareNumber() {
|
|
|
|
return shareNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setShareNumber(int shareNumber) {
|
|
|
|
this.shareNumber = shareNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getCollectionNumber() {
|
|
|
|
return collectionNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCollectionNumber(int collectionNumber) {
|
|
|
|
this.collectionNumber = collectionNumber;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|