Skip to content

Commit

Permalink
Merge pull request #13 from GreenGen72/feature/categoria
Browse files Browse the repository at this point in the history
Adcionado Foto na model Categoria
  • Loading branch information
RaviBrito authored May 22, 2024
2 parents 742c7d4 + 1bf4225 commit 927f39a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/com/generation/greengen/model/Categoria.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ public class Categoria {
@Schema(description = "Campo destinado ao armazenamento do nome dado para a categoria dos produtos.", example = "Energia solar", required = true)
private String nome;

@Size(min = 5, max = 5000)
@Schema(description = "Campo destinado ao armazenamento do url que guarda a foto da categoria dos produtos.", example = "https://images.tcdn.com.br/img/img_prod0f2.jpg", required = true)
private String foto;

@OneToMany(fetch = FetchType.LAZY, mappedBy = "categoria", cascade = CascadeType.ALL)
@JsonIgnoreProperties("categoria")
private List<Produto> produto;
Expand Down Expand Up @@ -65,6 +69,10 @@ public void setNome(String nome) {
this.nome = nome;
}

public String getFoto() {return foto;}

public void setFoto(String foto) {this.foto = foto; }

public List<Produto> getProduto() {
return produto;
}
Expand Down

0 comments on commit 927f39a

Please sign in to comment.