package com.example.cookbook.model; public class Recept { private Long recId; private String recIme; private String postapka; private Float srednaOcena; public Float getSrednaOcena() { return srednaOcena; } public void setSrednaOcena(Float srednaOcena) { this.srednaOcena = srednaOcena; } public Recept(Long recId, String recIme, String postapka) { this.recId = recId; this.recIme = recIme; this.postapka = postapka; this.srednaOcena = 0.f; } public Recept() { } public Long getRecId() { return recId; } public void setRecId(Long recId) { this.recId = recId; } public String getRecIme() { return recIme; } public void setRecIme(String recIme) { this.recIme = recIme; } public String getPostapka() { return postapka; } public void setPostapka(String postapka) { this.postapka = postapka; } }