-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
60f0994
commit 01ac07c
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
src/main/java/com/julianocanuto/controleestoque/dto/IngredienteIdNomeQuantidadeDTO.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package com.julianocanuto.controleestoque.dto; | ||
|
||
import java.io.Serializable; | ||
|
||
import com.julianocanuto.controleestoque.repositorios.projections.IngredienteIdNomeQuantidadeProjection; | ||
|
||
public class IngredienteIdNomeQuantidadeDTO implements Serializable { | ||
private static final long serialVersionUID = 1L; | ||
|
||
private Long id; | ||
private String nome; | ||
private Integer quantidade; | ||
|
||
public IngredienteIdNomeQuantidadeDTO() { | ||
|
||
} | ||
|
||
public IngredienteIdNomeQuantidadeDTO(Long id, String nome, Integer quantidade) { | ||
this.id = id; | ||
this.nome = nome; | ||
this.quantidade = quantidade; | ||
} | ||
|
||
public IngredienteIdNomeQuantidadeDTO(IngredienteIdNomeQuantidadeProjection projection) { | ||
id = projection.getId(); | ||
nome = projection.getNome(); | ||
quantidade = projection.getQuantidade(); | ||
} | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Long id) { | ||
this.id = id; | ||
} | ||
|
||
public String getNome() { | ||
return nome; | ||
} | ||
|
||
public void setNome(String nome) { | ||
this.nome = nome; | ||
} | ||
|
||
public Integer getQuantidade() { | ||
return quantidade; | ||
} | ||
|
||
public void setQuantidade(Integer quantidade) { | ||
this.quantidade = quantidade; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "IngredienteIdNomeQuantidadeDTO [id=" + id + ", nome=" + nome + ", quantidade=" + quantidade + "]"; | ||
} | ||
|
||
} |