From 9faa74e1912022dc6e54c3e93426946876b5d83a Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期五, 25 十月 2024 10:49:13 +0800
Subject: [PATCH] 修改redistemplate的hashkey serializer,更方便客户端查看redis的数据
---
collect/src/main/java/com/qianwen/mdc/collect/entity/iotdb/AggregateState.java | 22 ++++++++++++++++++++--
1 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/collect/src/main/java/com/qianwen/mdc/collect/entity/iotdb/AggregateState.java b/collect/src/main/java/com/qianwen/mdc/collect/entity/iotdb/AggregateState.java
index ddad4b0..3a152ab 100644
--- a/collect/src/main/java/com/qianwen/mdc/collect/entity/iotdb/AggregateState.java
+++ b/collect/src/main/java/com/qianwen/mdc/collect/entity/iotdb/AggregateState.java
@@ -8,7 +8,8 @@
private Long time;
private Long workstationId;
private Integer valueCollect;
-
+ private Long durationCollect;
+ private Long endTime;
private String calendarCode;
private Integer factoryYear;
private Integer factoryMonth;
@@ -21,7 +22,8 @@
private Integer wcs;
private Integer rps;
private Integer isPlan;
- private Long feedbackId;
+
+ private Long feedbackId;//杩欎釜搴旇鍙啀AggregateStateWithFeedback涓湁
private Long employeeId;
public void setWorkstationId(final Long workstationId) {
@@ -177,5 +179,21 @@
public void setFeedbackId(Long feedbackId) {
this.feedbackId = feedbackId;
}
+
+ public Long getDurationCollect() {
+ return durationCollect;
+ }
+
+ public void setDurationCollect(Long durationCollect) {
+ this.durationCollect = durationCollect;
+ }
+
+ public Long getEndTime() {
+ return endTime;
+ }
+
+ public void setEndTime(Long endTime) {
+ this.endTime = endTime;
+ }
}
--
Gitblit v1.9.3