From a33c33d48c2c16995130b825355b6883be4eb159 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期一, 02 九月 2024 15:26:41 +0800
Subject: [PATCH] 加入定时任务,启动时打固定点 ,并且加入工位数据缓存
---
collect/src/main/java/com/qianwen/mdc/collect/entity/iotdb/AggregateState.java | 19 ++++++++++++++++++-
1 files changed, 18 insertions(+), 1 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..eb4374a 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;
@@ -177,5 +178,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