package com.tradecloud.domain.item; import com.tradecloud.common.base.PersistenceBase; import javax.persistence.Entity; @Entity public class ProductNotes extends PersistenceBase { private String key; private String value; public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }