fish.focus.uvms.asset.client.model.CustomCode Maven / Gradle / Ivy
package fish.focus.uvms.asset.client.model;
import java.util.HashMap;
import java.util.Map;
import javax.persistence.EmbeddedId;
public class CustomCode {
public CustomCode() {
// for json
}
@EmbeddedId
CustomCodesPK primaryKey;
private String description;
private Map nameValue = new HashMap<>();
public CustomCodesPK getPrimaryKey() {
return primaryKey;
}
public void setPrimaryKey(CustomCodesPK primaryKey) {
this.primaryKey = primaryKey;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Map getNameValue() {
return nameValue;
}
public void setNameValue(Map nameValue) {
this.nameValue = nameValue;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy