WXMultiRowViewerDto.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**
  2. *
  3. */
  4. package com.xcgl.weixin.entity;
  5. /**
  6. * @author xzx
  7. *
  8. * 2019年1月5日
  9. *
  10. */
  11. public class WXMultiRowViewerDto {
  12. /**
  13. * 段落标题
  14. */
  15. String divTitle;
  16. /**
  17. * 核心内容
  18. */
  19. String mainContent;
  20. /**
  21. * 二级内容
  22. */
  23. String secondContent;
  24. /**
  25. * 三级内容
  26. */
  27. String thirdContent;
  28. /**
  29. * 右标签
  30. */
  31. String rightTag;
  32. /**
  33. * 隐藏文本
  34. */
  35. String hiddenText;
  36. String onclick;
  37. boolean isDeleteView = false;
  38. public boolean isDeleteView() {
  39. return isDeleteView;
  40. }
  41. public void setDeleteView(boolean isDeleteView) {
  42. this.isDeleteView = isDeleteView;
  43. }
  44. public String getDivTitle() {
  45. return divTitle;
  46. }
  47. public void setDivTitle(String divTitle) {
  48. this.divTitle = divTitle;
  49. }
  50. public String getMainContent() {
  51. return mainContent;
  52. }
  53. public void setMainContent(String mainContent) {
  54. this.mainContent = mainContent;
  55. }
  56. public String getSecondContent() {
  57. return secondContent;
  58. }
  59. public void setSecondContent(String secondContent) {
  60. this.secondContent = secondContent;
  61. }
  62. public String getThirdContent() {
  63. return thirdContent;
  64. }
  65. public void setThirdContent(String thirdContent) {
  66. this.thirdContent = thirdContent;
  67. }
  68. public String getRightTag() {
  69. return rightTag;
  70. }
  71. public void setRightTag(String rightTag) {
  72. this.rightTag = rightTag;
  73. }
  74. public String getHiddenText() {
  75. return hiddenText;
  76. }
  77. public void setHiddenText(String hiddenText) {
  78. this.hiddenText = hiddenText;
  79. }
  80. public String getOnclick() {
  81. return onclick;
  82. }
  83. public void setOnclick(String onclick) {
  84. this.onclick = onclick;
  85. }
  86. }