FollowReply.java 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. package com.idiot.operationbackend.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableId;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import java.util.List;
  6. /**
  7. * 关注回复
  8. * @author wang xiao
  9. * @date Created in 17:12 2020/9/21
  10. */
  11. @TableName("t_account_follow_reply")
  12. public class FollowReply {
  13. @TableId
  14. private String id;
  15. private String accountId;
  16. private String nikeName;
  17. private String headImage;
  18. private Integer pushType;
  19. private Boolean enable;
  20. private String materialIds;
  21. private String articlesIds;
  22. private String createTime;
  23. @TableField(exist = false)
  24. private List<Object> contents;
  25. @TableField(exist = false)
  26. private Boolean setUp;
  27. public String getId() {
  28. return id;
  29. }
  30. public void setId(String id) {
  31. this.id = id;
  32. }
  33. public String getAccountId() {
  34. return accountId;
  35. }
  36. public void setAccountId(String accountId) {
  37. this.accountId = accountId;
  38. }
  39. public String getNikeName() {
  40. return nikeName;
  41. }
  42. public void setNikeName(String nikeName) {
  43. this.nikeName = nikeName;
  44. }
  45. public String getHeadImage() {
  46. return headImage;
  47. }
  48. public void setHeadImage(String headImage) {
  49. this.headImage = headImage;
  50. }
  51. public Integer getPushType() {
  52. return pushType;
  53. }
  54. public void setPushType(Integer pushType) {
  55. this.pushType = pushType;
  56. }
  57. public Boolean getEnable() {
  58. return enable;
  59. }
  60. public void setEnable(Boolean enable) {
  61. this.enable = enable;
  62. }
  63. public String getMaterialIds() {
  64. return materialIds;
  65. }
  66. public void setMaterialIds(String materialIds) {
  67. this.materialIds = materialIds;
  68. }
  69. public String getArticlesIds() {
  70. return articlesIds;
  71. }
  72. public void setArticlesIds(String articlesIds) {
  73. this.articlesIds = articlesIds;
  74. }
  75. public String getCreateTime() {
  76. return createTime;
  77. }
  78. public void setCreateTime(String createTime) {
  79. this.createTime = createTime;
  80. }
  81. public List<Object> getContents() {
  82. return contents;
  83. }
  84. public void setContents(List<Object> contents) {
  85. this.contents = contents;
  86. }
  87. public Boolean getSetUp() {
  88. return setUp;
  89. }
  90. public void setSetUp(Boolean setUp) {
  91. this.setUp = setUp;
  92. }
  93. }