Articles.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.idiot.operationbackend.entity;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. /**
  5. * 图文
  6. * @author wang xiao
  7. * @date Created in 10:42 2020/9/21
  8. */
  9. @TableName("t_articles")
  10. public class Articles {
  11. @TableId
  12. private String id;
  13. private String imageUrl;
  14. private String title;
  15. private String content;
  16. private String contentSourceUrl;
  17. private String createTime;
  18. public String getId() {
  19. return id;
  20. }
  21. public void setId(String id) {
  22. this.id = id;
  23. }
  24. public String getImageUrl() {
  25. return imageUrl;
  26. }
  27. public void setImageUrl(String imageUrl) {
  28. this.imageUrl = imageUrl;
  29. }
  30. public String getTitle() {
  31. return title;
  32. }
  33. public void setTitle(String title) {
  34. this.title = title;
  35. }
  36. public String getContent() {
  37. return content;
  38. }
  39. public void setContent(String content) {
  40. this.content = content;
  41. }
  42. public String getContentSourceUrl() {
  43. return contentSourceUrl;
  44. }
  45. public void setContentSourceUrl(String contentSourceUrl) {
  46. this.contentSourceUrl = contentSourceUrl;
  47. }
  48. public String getCreateTime() {
  49. return createTime;
  50. }
  51. public void setCreateTime(String createTime) {
  52. this.createTime = createTime;
  53. }
  54. }