ArticleEntity.js 363 B

12345678910111213141516
  1. class ArticleEntity {
  2. constructor() {
  3. this.articleID = ''
  4. this.title = ''
  5. this.authorID = ''
  6. this.createdAt = null
  7. this.updatedAt = null
  8. this.description = ''
  9. this.content = ''
  10. this.likeCount = 0
  11. this.disliskCount = 0
  12. this.commentCount = 0
  13. }
  14. }
  15. module.exports = ArticleEntity