|
@@ -28,6 +28,8 @@ var (
|
|
|
ObjTypeDicOfTpperception: make(map[uint32]uint8),
|
|
|
ObjSpeedDicOfTpperception: make(map[uint32]float64),
|
|
|
}
|
|
|
+
|
|
|
+ triggerInterval = 5.0
|
|
|
|
|
|
saveTimeWindowMutex sync.Mutex
|
|
|
|
|
@@ -81,7 +83,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *visualization_msgs.MarkerArray) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -123,7 +125,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.BoundingBoxArray) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -165,7 +167,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.FaultVec) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -207,7 +209,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.Frame) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -249,7 +251,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.PointCloud2) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -291,7 +293,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.PointCloud2) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -333,7 +335,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.LaserScan) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -375,7 +377,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.PointCloud2) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -417,7 +419,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.LaserScan) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -459,7 +461,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.PerceptionCicvMovingObjects) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -502,7 +504,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Callback: func(data *pjisuv_msgs.Trajectory) {
|
|
|
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -568,7 +570,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
mutexOfCicvLocation.RUnlock()
|
|
|
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -610,7 +612,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.AutowareCloudClusterArray) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -654,7 +656,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.HeartBeatInfo) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -696,7 +698,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *geometry_msgs.Vector3Stamped) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -740,7 +742,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *nav_msgs.Odometry) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -784,7 +786,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *geometry_msgs.PolygonStamped) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -828,7 +830,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *nav_msgs.Path) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -872,7 +874,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *nav_msgs.Path) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -916,7 +918,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.PolygonStamped) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -960,7 +962,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *visualization_msgs.MarkerArray) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1015,7 +1017,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
}
|
|
|
mutexOfPjControlPub.RUnlock()
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1059,7 +1061,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.PointCloud2) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1103,7 +1105,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.PointCloud2) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1147,7 +1149,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *nav_msgs.Path) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1191,7 +1193,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.Trajectory) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1235,7 +1237,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.PointCloud2) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1279,7 +1281,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *nav_msgs.Path) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1323,7 +1325,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *tf2_msgs.TFMessage) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1385,7 +1387,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
}
|
|
|
mutexOfTpperception.RUnlock()
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1438,7 +1440,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *visualization_msgs.MarkerArray) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1482,7 +1484,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.RoutePlan) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1526,7 +1528,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *nav_msgs.Path) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1570,7 +1572,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.PointCloud2) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1614,7 +1616,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *sensor_msgs.Image) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1669,7 +1671,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
}
|
|
|
mutexOfDataRead.RUnlock()
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1712,7 +1714,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.PerceptionLocalization) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|
|
@@ -1756,7 +1758,7 @@ func PrepareTimeWindowProducerQueue() {
|
|
|
Topic: topic,
|
|
|
Callback: func(data *pjisuv_msgs.VehicleFdb) {
|
|
|
subscribersTimeMutexes[i].Lock()
|
|
|
- if time.Since(subscribersTimes[i]).Seconds() > 1 {
|
|
|
+ if time.Since(subscribersTimes[i]).Seconds() > triggerInterval {
|
|
|
subscribersMutexes[i].Lock()
|
|
|
faultHappenTime := util.GetNowTimeCustom()
|
|
|
lastTimeWindow := commonEntity.GetLastTimeWindow()
|