20 changed files with 97 additions and 168 deletions
@ -1,41 +0,0 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.dao.model.sql; |
|||
|
|||
import jakarta.persistence.Column; |
|||
import jakarta.persistence.Entity; |
|||
import jakarta.persistence.Id; |
|||
import jakarta.persistence.Table; |
|||
import lombok.Data; |
|||
import org.hibernate.annotations.Generated; |
|||
|
|||
import static org.thingsboard.server.dao.model.ModelConstants.KEY_COLUMN; |
|||
import static org.thingsboard.server.dao.model.ModelConstants.KEY_ID_COLUMN; |
|||
|
|||
@Data |
|||
@Entity |
|||
@Table(name = "attribute_kv_dictionary") |
|||
public final class AttributeKvDictionaryEntry { |
|||
|
|||
@Id |
|||
@Column(name = KEY_COLUMN) |
|||
private String key; |
|||
|
|||
@Column(name = KEY_ID_COLUMN, unique = true, columnDefinition="int") |
|||
@Generated |
|||
private int keyId; |
|||
|
|||
} |
|||
@ -1,27 +0,0 @@ |
|||
/** |
|||
* Copyright © 2016-2023 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.dao.sql.attributes; |
|||
|
|||
import org.springframework.data.jpa.repository.JpaRepository; |
|||
import org.thingsboard.server.dao.model.sql.AttributeKvDictionaryEntry; |
|||
|
|||
import java.util.Optional; |
|||
|
|||
public interface AttributeKvDictionaryRepository extends JpaRepository<AttributeKvDictionaryEntry, String> { |
|||
|
|||
Optional<AttributeKvDictionaryEntry> findByKeyId(int keyId); |
|||
|
|||
} |
|||
Loading…
Reference in new issue