Was refactored

This commit is contained in:
viktorbasanets 2018-09-07 17:34:44 +03:00
parent 3d4b2e3dc2
commit ae647024a5
3 changed files with 2 additions and 12 deletions

View File

@ -39,8 +39,8 @@ public class EntityView extends SearchTextBasedWithAdditionalInfo<EntityViewId>
private CustomerId customerId; private CustomerId customerId;
private String name; private String name;
private TelemetryEntityView keys; private TelemetryEntityView keys;
private Long tsBegin; private long startTs;
private Long tsEnd; private long endTs;
public EntityView() { public EntityView() {
super(); super();

View File

@ -44,9 +44,4 @@ public class AttributesEntityView {
public AttributesEntityView(AttributesEntityView obj) { public AttributesEntityView(AttributesEntityView obj) {
this(obj.getCs(), obj.getSs(), obj.getSh()); this(obj.getCs(), obj.getSs(), obj.getSh());
} }
@Override
public String toString() {
return "{cs=" + cs + ", ss=" + ss + ", sh=" + sh + '}';
}
} }

View File

@ -40,9 +40,4 @@ public class TelemetryEntityView {
public TelemetryEntityView(TelemetryEntityView obj) { public TelemetryEntityView(TelemetryEntityView obj) {
this(obj.getTimeseries(), obj.getAttributes()); this(obj.getTimeseries(), obj.getAttributes());
} }
@Override
public String toString() {
return "{timeseries=" + timeseries + ", attributes=" + attributes + '}';
}
} }