Pull request #6: Made DictionaryEntry Serializable
Merge in RED/persistence-service from DictionaryEntrySerializable to master * commit '433f181c67c89c9af19f5c20653636655d500d3c': Made DictionaryEntry Serializable
This commit is contained in:
commit
9bfe175acc
@ -1,5 +1,7 @@
|
||||
package com.iqser.red.service.persistence.service.v1.api.model.data.configuration;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
@ -15,7 +17,7 @@ import javax.persistence.*;
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Table(name = "dictionary_entry")
|
||||
public class DictionaryEntry {
|
||||
public class DictionaryEntry implements Serializable {
|
||||
|
||||
@Id
|
||||
@GeneratedValue
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user