Browse Source

Set serialVersionUID for DeviceProfile class

pull/5496/head
Viacheslav Klimov 5 years ago
committed by Andrew Shvayka
parent
commit
aaead618aa
  1. 2
      common/data/src/main/java/org/thingsboard/server/common/data/DeviceProfile.java

2
common/data/src/main/java/org/thingsboard/server/common/data/DeviceProfile.java

@ -42,6 +42,8 @@ import static org.thingsboard.server.common.data.SearchTextBasedWithAdditionalIn
@Slf4j
public class DeviceProfile extends SearchTextBased<DeviceProfileId> implements HasName, HasTenantId, HasOtaPackage {
private static final long serialVersionUID = 6998485460273302018L;
@ApiModelProperty(position = 3, value = "JSON object with Tenant Id that owns the profile.", readOnly = true)
private TenantId tenantId;
@NoXss

Loading…
Cancel
Save