|
@@ -13,7 +13,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
* </p>
|
|
|
*
|
|
|
* @author zhaops
|
|
|
- * @since 2019-06-03
|
|
|
+ * @since 2019-06-04
|
|
|
*/
|
|
|
@TableName("tran_inquiry_info")
|
|
|
public class InquiryInfo implements Serializable {
|
|
@@ -91,6 +91,11 @@ public class InquiryInfo implements Serializable {
|
|
|
*/
|
|
|
private String diagnose;
|
|
|
|
|
|
+ /**
|
|
|
+ * 访问的系统类型 1:user-service,2:diagbotman-service,3:uaa-service,4:log-service,5:bi-service,6:knowledge-service,7:feedback-service,8:icss-web
|
|
|
+ */
|
|
|
+ private Integer sysType;
|
|
|
+
|
|
|
/**
|
|
|
* 内容JSON字符串
|
|
|
*/
|
|
@@ -199,6 +204,13 @@ public class InquiryInfo implements Serializable {
|
|
|
public void setDiagnose(String diagnose) {
|
|
|
this.diagnose = diagnose;
|
|
|
}
|
|
|
+ public Integer getSysType() {
|
|
|
+ return sysType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSysType(Integer sysType) {
|
|
|
+ this.sysType = sysType;
|
|
|
+ }
|
|
|
public String getDataJson() {
|
|
|
return dataJson;
|
|
|
}
|
|
@@ -231,6 +243,7 @@ public class InquiryInfo implements Serializable {
|
|
|
", regVisitedState=" + regVisitedState +
|
|
|
", type=" + type +
|
|
|
", diagnose=" + diagnose +
|
|
|
+ ", sysType=" + sysType +
|
|
|
", dataJson=" + dataJson +
|
|
|
", remark=" + remark +
|
|
|
"}";
|