|
@@ -13,7 +13,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
* </p>
|
|
|
*
|
|
|
* @author zhaops
|
|
|
- * @since 2019-05-27
|
|
|
+ * @since 2019-06-04
|
|
|
*/
|
|
|
@TableName("tran_inquiry_detail")
|
|
|
public class InquiryDetail implements Serializable {
|
|
@@ -61,6 +61,11 @@ public class InquiryDetail implements Serializable {
|
|
|
*/
|
|
|
private Integer type;
|
|
|
|
|
|
+ /**
|
|
|
+ * 内容字符串
|
|
|
+ */
|
|
|
+ private String content;
|
|
|
+
|
|
|
/**
|
|
|
* 内容字符串纯文本
|
|
|
*/
|
|
@@ -127,6 +132,13 @@ public class InquiryDetail implements Serializable {
|
|
|
public void setType(Integer type) {
|
|
|
this.type = type;
|
|
|
}
|
|
|
+ public String getContent() {
|
|
|
+ return content;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContent(String content) {
|
|
|
+ this.content = content;
|
|
|
+ }
|
|
|
public String getContentValue() {
|
|
|
return contentValue;
|
|
|
}
|
|
@@ -153,6 +165,7 @@ public class InquiryDetail implements Serializable {
|
|
|
", modifier=" + modifier +
|
|
|
", inquiryId=" + inquiryId +
|
|
|
", type=" + type +
|
|
|
+ ", content=" + content +
|
|
|
", contentValue=" + contentValue +
|
|
|
", remark=" + remark +
|
|
|
"}";
|