| 3 | import java.util.Date; |
| 4 | |
| 5 | public class ArticleEntity { |
| 6 | private Long articleId; |
| 7 | |
| 8 | private Long columnId; |
| 9 | |
| 10 | private Long userId; |
| 11 | |
| 12 | private String articleTitle; |
| 13 | |
| 14 | private String articleCoverImage; |
| 15 | |
| 16 | private Date createTime; |
| 17 | |
| 18 | private Date updateTime; |
| 19 | |
| 20 | private String articleContent; |
| 21 | |
| 22 | public Long getArticleId() { |
| 23 | return articleId; |
| 24 | } |
| 25 | |
| 26 | public void setArticleId(Long articleId) { |
| 27 | this.articleId = articleId; |
| 28 | } |
| 29 | |
| 30 | public Long getColumnId() { |
| 31 | return columnId; |
| 32 | } |
| 33 | |
| 34 | public void setColumnId(Long columnId) { |
| 35 | this.columnId = columnId; |
| 36 | } |
| 37 | |
| 38 | public Long getUserId() { |
| 39 | return userId; |
| 40 | } |
| 41 | |
| 42 | public void setUserId(Long userId) { |
| 43 | this.userId = userId; |
| 44 | } |
| 45 | |
| 46 | public String getArticleTitle() { |
| 47 | return articleTitle; |
| 48 | } |
| 49 | |
| 50 | public void setArticleTitle(String articleTitle) { |
| 51 | this.articleTitle = articleTitle == null ? null : articleTitle.trim(); |
| 52 | } |
| 53 | |
| 54 | public String getArticleCoverImage() { |
| 55 | return articleCoverImage; |
| 56 | } |
| 57 | |
| 58 | public void setArticleCoverImage(String articleCoverImage) { |
| 59 | this.articleCoverImage = articleCoverImage == null ? null : articleCoverImage.trim(); |
| 60 | } |
| 61 | |
| 62 | public Date getCreateTime() { |
nothing calls this directly
no outgoing calls
no test coverage detected