Преглед изворни кода

修复url参数属性不匹配

liukx пре 4 година
родитељ
комит
26463a34fb

+ 63 - 90
jay-monitor-data-server/src/main/java/com/jay/monitor/data/server/models/entity/es/JayMonitorUrlIndex.java

@@ -22,135 +22,112 @@ public class JayMonitorUrlIndex {
     @ESID
     private String id;
 
-    /**
-     * 应用名称
-     */
-    private String applicationName;
-
-    /**
-     * 应用地址
-     */
-    private String applicationIp;
-
-    /**
-     * 请求路径
-     */
     private String url;
 
-    /**
-     * 用户编号
-     */
     private String userId;
 
-    /**
-     * 客户端ip
-     */
     private String clientIp;
 
-    /**
-     * 应用监控组
-     */
-    private String dataGroupName;
+    private String ip;
 
-    /**
-     * 应用监控key
-     */
-    private String dataGroupKey;
+    private String applicationName;
+
+    private String groupName;
+
+    private String groupKeyName;
 
-    /**
-     * 数据编号
-     */
     private String dataId;
 
-    /**
-     * 状态: 客户端返回的状态码
-     */
-    private Integer status;
+    private String logId;
 
     /**
-     * 日志编号
+     * 创建时间
      */
-    private String logId;
+    private Date createDate;
 
     /**
-     * 创建时间
+     * 状态
      */
-    private Date createdTime;
+    private Integer status;
 
-    public String getJsonContent() {
-        return jsonContent;
+    public String getClientIp() {
+        return clientIp;
     }
 
-    public void setJsonContent(String jsonContent) {
-        this.jsonContent = jsonContent;
+    public void setClientIp(String clientIp) {
+        this.clientIp = clientIp;
     }
 
-    public void setRequestTime(Long requestTime) {
-        this.requestTime = requestTime;
+    public String getUserId() {
+        return userId;
     }
 
-    public String getId() {
-        return id;
+    public void setUserId(String userId) {
+        this.userId = userId;
     }
 
-    public void setId(String id) {
-        this.id = id;
+    public String getUrl() {
+        return url;
     }
 
-    public String getApplicationName() {
-        return applicationName;
+    public void setUrl(String url) {
+        this.url = url;
     }
 
-    public void setApplicationName(String applicationName) {
-        this.applicationName = applicationName;
+    public String getJsonContent() {
+        return jsonContent;
     }
 
-    public String getApplicationIp() {
-        return applicationIp;
+    public void setJsonContent(String jsonContent) {
+        this.jsonContent = jsonContent;
     }
 
-    public void setApplicationIp(String applicationIp) {
-        this.applicationIp = applicationIp;
+    public Long getRequestTime() {
+        return requestTime;
     }
 
-    public String getUrl() {
-        return url;
+    public void setRequestTime(Long requestTime) {
+        this.requestTime = requestTime;
     }
 
-    public void setUrl(String url) {
-        this.url = url;
+    public String getId() {
+        return id;
     }
 
-    public String getUserId() {
-        return userId;
+    public void setId(String id) {
+        this.id = id;
     }
 
-    public void setUserId(String userId) {
-        this.userId = userId;
+    public String getIp() {
+        return ip;
     }
 
-    public String getClientIp() {
-        return clientIp;
+    public void setIp(String ip) {
+        this.ip = ip;
     }
 
-    public void setClientIp(String clientIp) {
-        this.clientIp = clientIp;
+    public String getApplicationName() {
+        return applicationName;
     }
 
-    public String getDataGroupName() {
-        return dataGroupName;
+    public void setApplicationName(String applicationName) {
+        this.applicationName = applicationName;
     }
 
-    public void setDataGroupName(String dataGroupName) {
-        this.dataGroupName = dataGroupName;
+    public String getGroupName() {
+        return groupName;
     }
 
-    public String getDataGroupKey() {
-        return dataGroupKey;
+    public void setGroupName(String groupName) {
+        this.groupName = groupName;
     }
 
-    public void setDataGroupKey(String dataGroupKey) {
-        this.dataGroupKey = dataGroupKey;
+    public String getGroupKeyName() {
+        return groupKeyName;
+    }
+
+    public void setGroupKeyName(String groupKeyName) {
+        this.groupKeyName = groupKeyName;
     }
 
     public String getDataId() {
@@ -161,14 +138,6 @@ public class JayMonitorUrlIndex {
         this.dataId = dataId;
     }
 
-    public Integer getStatus() {
-        return status;
-    }
-
-    public void setStatus(Integer status) {
-        this.status = status;
-    }
-
     public String getLogId() {
         return logId;
     }
@@ -177,15 +146,19 @@ public class JayMonitorUrlIndex {
         this.logId = logId;
     }
 
-    public Date getCreatedTime() {
-        return createdTime;
+    public Date getCreateDate() {
+        return createDate;
     }
 
-    public void setCreatedTime(Date createdTime) {
-        this.createdTime = createdTime;
+    public void setCreateDate(Date createDate) {
+        this.createDate = createDate;
     }
 
-    public Long getRequestTime() {
-        return requestTime;
+    public Integer getStatus() {
+        return status;
+    }
+
+    public void setStatus(Integer status) {
+        this.status = status;
     }
 }