源数据表+入库逻辑+计算95带宽值/日

This commit is contained in:
gaoyutao
2025-08-26 19:14:12 +08:00
parent 259398bfcc
commit daa0a8779f
76 changed files with 7101 additions and 92 deletions

View File

@@ -48,6 +48,8 @@ public class BaseEntity implements Serializable
* 选中的属性名称
*/
private String[] properties;
/** 时间戳 */
private String timestamp;
/** 请求参数 */
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@@ -150,4 +152,12 @@ public class BaseEntity implements Serializable
{
this.params = params;
}
public String getTimestamp() {
return timestamp;
}
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
}