|
@@ -65,6 +65,11 @@ public class IntroduceDetail implements Serializable {
|
|
*/
|
|
*/
|
|
private String content;
|
|
private String content;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 提示明细内容-纯文本
|
|
|
|
+ */
|
|
|
|
+ private String text;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 提示明细序号
|
|
* 提示明细序号
|
|
*/
|
|
*/
|
|
@@ -82,6 +87,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setId(Long id) {
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
this.id = id;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getIsDeleted() {
|
|
public String getIsDeleted() {
|
|
return isDeleted;
|
|
return isDeleted;
|
|
}
|
|
}
|
|
@@ -89,6 +95,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setIsDeleted(String isDeleted) {
|
|
public void setIsDeleted(String isDeleted) {
|
|
this.isDeleted = isDeleted;
|
|
this.isDeleted = isDeleted;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Date getGmtCreate() {
|
|
public Date getGmtCreate() {
|
|
return gmtCreate;
|
|
return gmtCreate;
|
|
}
|
|
}
|
|
@@ -96,6 +103,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
this.gmtCreate = gmtCreate;
|
|
this.gmtCreate = gmtCreate;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Date getGmtModified() {
|
|
public Date getGmtModified() {
|
|
return gmtModified;
|
|
return gmtModified;
|
|
}
|
|
}
|
|
@@ -103,6 +111,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setGmtModified(Date gmtModified) {
|
|
public void setGmtModified(Date gmtModified) {
|
|
this.gmtModified = gmtModified;
|
|
this.gmtModified = gmtModified;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getCreator() {
|
|
public String getCreator() {
|
|
return creator;
|
|
return creator;
|
|
}
|
|
}
|
|
@@ -110,6 +119,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setCreator(String creator) {
|
|
public void setCreator(String creator) {
|
|
this.creator = creator;
|
|
this.creator = creator;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getModifier() {
|
|
public String getModifier() {
|
|
return modifier;
|
|
return modifier;
|
|
}
|
|
}
|
|
@@ -117,6 +127,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setModifier(String modifier) {
|
|
public void setModifier(String modifier) {
|
|
this.modifier = modifier;
|
|
this.modifier = modifier;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Long getIntroduceId() {
|
|
public Long getIntroduceId() {
|
|
return introduceId;
|
|
return introduceId;
|
|
}
|
|
}
|
|
@@ -124,6 +135,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setIntroduceId(Long introduceId) {
|
|
public void setIntroduceId(Long introduceId) {
|
|
this.introduceId = introduceId;
|
|
this.introduceId = introduceId;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getTitle() {
|
|
public String getTitle() {
|
|
return title;
|
|
return title;
|
|
}
|
|
}
|
|
@@ -131,6 +143,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setTitle(String title) {
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
this.title = title;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getContent() {
|
|
public String getContent() {
|
|
return content;
|
|
return content;
|
|
}
|
|
}
|
|
@@ -138,6 +151,15 @@ public class IntroduceDetail implements Serializable {
|
|
public void setContent(String content) {
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
this.content = content;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getText() {
|
|
|
|
+ return text;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setText(String text) {
|
|
|
|
+ this.text = text;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Integer getOrderNo() {
|
|
public Integer getOrderNo() {
|
|
return orderNo;
|
|
return orderNo;
|
|
}
|
|
}
|
|
@@ -145,6 +167,7 @@ public class IntroduceDetail implements Serializable {
|
|
public void setOrderNo(Integer orderNo) {
|
|
public void setOrderNo(Integer orderNo) {
|
|
this.orderNo = orderNo;
|
|
this.orderNo = orderNo;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Integer getPosition() {
|
|
public Integer getPosition() {
|
|
return position;
|
|
return position;
|
|
}
|
|
}
|
|
@@ -156,17 +179,18 @@ public class IntroduceDetail implements Serializable {
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "IntroduceDetail{" +
|
|
return "IntroduceDetail{" +
|
|
- "id=" + id +
|
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
|
- ", creator=" + creator +
|
|
|
|
- ", modifier=" + modifier +
|
|
|
|
- ", introduceId=" + introduceId +
|
|
|
|
- ", title=" + title +
|
|
|
|
- ", content=" + content +
|
|
|
|
- ", orderNo=" + orderNo +
|
|
|
|
- ", position=" + position +
|
|
|
|
- "}";
|
|
|
|
|
|
+ "id=" + id +
|
|
|
|
+ ", isDeleted=" + isDeleted +
|
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
|
+ ", creator=" + creator +
|
|
|
|
+ ", modifier=" + modifier +
|
|
|
|
+ ", introduceId=" + introduceId +
|
|
|
|
+ ", title=" + title +
|
|
|
|
+ ", content=" + content +
|
|
|
|
+ ", text=" + text +
|
|
|
|
+ ", orderNo=" + orderNo +
|
|
|
|
+ ", position=" + position +
|
|
|
|
+ "}";
|
|
}
|
|
}
|
|
}
|
|
}
|