...
|
...
|
@@ -20,9 +20,7 @@ import org.thingsboard.server.common.data.id.CustomerId; |
20
|
20
|
import org.thingsboard.server.common.data.id.EntityId;
|
21
|
21
|
import org.thingsboard.server.common.data.id.EntityViewId;
|
22
|
22
|
import org.thingsboard.server.common.data.id.TenantId;
|
23
|
|
-
|
24
|
|
-import java.beans.ConstructorProperties;
|
25
|
|
-import java.util.List;
|
|
23
|
+import org.thingsboard.server.common.data.objects.TelemetryEntityView;
|
26
|
24
|
|
27
|
25
|
/**
|
28
|
26
|
* Created by Victor Basanets on 8/27/2017.
|
...
|
...
|
@@ -40,7 +38,7 @@ public class EntityView extends SearchTextBasedWithAdditionalInfo<EntityViewId> |
40
|
38
|
private TenantId tenantId;
|
41
|
39
|
private CustomerId customerId;
|
42
|
40
|
private String name;
|
43
|
|
- private List<String> keys;
|
|
41
|
+ private TelemetryEntityView keys; //To Do: Changed from all code
|
44
|
42
|
private Long tsBegin;
|
45
|
43
|
private Long tsEnd;
|
46
|
44
|
|
...
|
...
|
|