| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /**
- *
- */
- package com.xcgl.weixin.entity;
- /**
- * @author xzx
- *
- * 2019年1月5日
- *
- */
- public class WXMultiRowViewerDto {
- /**
- * 段落标题
- */
- String divTitle;
- /**
- * 核心内容
- */
- String mainContent;
- /**
- * 二级内容
- */
- String secondContent;
- /**
- * 三级内容
- */
- String thirdContent;
- /**
- * 右标签
- */
- String rightTag;
- /**
- * 隐藏文本
- */
- String hiddenText;
-
- String onclick;
-
- boolean isDeleteView = false;
-
- public boolean isDeleteView() {
- return isDeleteView;
- }
- public void setDeleteView(boolean isDeleteView) {
- this.isDeleteView = isDeleteView;
- }
- public String getDivTitle() {
- return divTitle;
- }
- public void setDivTitle(String divTitle) {
- this.divTitle = divTitle;
- }
- public String getMainContent() {
- return mainContent;
- }
- public void setMainContent(String mainContent) {
- this.mainContent = mainContent;
- }
- public String getSecondContent() {
- return secondContent;
- }
- public void setSecondContent(String secondContent) {
- this.secondContent = secondContent;
- }
- public String getThirdContent() {
- return thirdContent;
- }
- public void setThirdContent(String thirdContent) {
- this.thirdContent = thirdContent;
- }
- public String getRightTag() {
- return rightTag;
- }
- public void setRightTag(String rightTag) {
- this.rightTag = rightTag;
- }
- public String getHiddenText() {
- return hiddenText;
- }
- public void setHiddenText(String hiddenText) {
- this.hiddenText = hiddenText;
- }
- public String getOnclick() {
- return onclick;
- }
- public void setOnclick(String onclick) {
- this.onclick = onclick;
- }
-
-
- }
|