Rev 623 | Go to most recent revision | Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 620 | blopes | 1 | package br.com.ec.domain.dto; |
| 2 | |||
| 3 | import java.util.Date; |
||
| 4 | |||
| 5 | public class ClienteDTO { |
||
| 6 | |||
| 7 | private String nome; |
||
| 8 | private Long sequencial; |
||
| 9 | private String cpfCnpj; |
||
| 10 | private String sexo; |
||
| 11 | private String email; |
||
| 12 | private String contato; |
||
| 13 | private String telefone; |
||
| 14 | private String endereco; |
||
| 15 | private String observacao; |
||
| 16 | private Date dataNascimento; |
||
| 17 | private Date dataCadastro; |
||
| 18 | private Boolean indicadorNovidades; |
||
| 19 | private Boolean ativo; |
||
| 20 | |||
| 21 | /* |
||
| 22 | private Modelo modelo; |
||
| 23 | private Set<Venda> listaVendas; |
||
| 24 | private Set<EstoqueAuditoria> listaTrocas; |
||
| 25 | private Set<Cupom> listaCupons; |
||
| 26 | private List<Pedido> pedidos = new ArrayList<Pedido>(); |
||
| 27 | */ |
||
| 28 | |||
| 29 | public ClienteDTO() { |
||
| 30 | } |
||
| 31 | |||
| 32 | public String getNome() { |
||
| 33 | return nome; |
||
| 34 | } |
||
| 35 | public void setNome(String nome) { |
||
| 36 | this.nome = nome; |
||
| 37 | } |
||
| 38 | |||
| 39 | public Long getSequencial() { |
||
| 40 | return sequencial; |
||
| 41 | } |
||
| 42 | public void setSequencial(Long sequencial) { |
||
| 43 | this.sequencial = sequencial; |
||
| 44 | } |
||
| 45 | |||
| 46 | public String getCpfCnpj() { |
||
| 47 | return cpfCnpj; |
||
| 48 | } |
||
| 49 | public void setCpfCnpj(String cpfCnpj) { |
||
| 50 | this.cpfCnpj = cpfCnpj; |
||
| 51 | } |
||
| 52 | |||
| 53 | public String getSexo() { |
||
| 54 | return sexo; |
||
| 55 | } |
||
| 56 | public void setSexo(String sexo) { |
||
| 57 | this.sexo = sexo; |
||
| 58 | } |
||
| 59 | |||
| 60 | public String getEmail() { |
||
| 61 | return email; |
||
| 62 | } |
||
| 63 | public void setEmail(String email) { |
||
| 64 | this.email = email; |
||
| 65 | } |
||
| 66 | |||
| 67 | public String getContato() { |
||
| 68 | return contato; |
||
| 69 | } |
||
| 70 | public void setContato(String contato) { |
||
| 71 | this.contato = contato; |
||
| 72 | } |
||
| 73 | |||
| 74 | public String getTelefone() { |
||
| 75 | return telefone; |
||
| 76 | } |
||
| 77 | public void setTelefone(String telefone) { |
||
| 78 | this.telefone = telefone; |
||
| 79 | } |
||
| 80 | |||
| 81 | public String getEndereco() { |
||
| 82 | return endereco; |
||
| 83 | } |
||
| 84 | public void setEndereco(String endereco) { |
||
| 85 | this.endereco = endereco; |
||
| 86 | } |
||
| 87 | |||
| 88 | public String getObservacao() { |
||
| 89 | return observacao; |
||
| 90 | } |
||
| 91 | public void setObservacao(String observacao) { |
||
| 92 | this.observacao = observacao; |
||
| 93 | } |
||
| 94 | |||
| 95 | public Date getDataNascimento() { |
||
| 96 | return dataNascimento; |
||
| 97 | } |
||
| 98 | public void setDataNascimento(Date dataNascimento) { |
||
| 99 | this.dataNascimento = dataNascimento; |
||
| 100 | } |
||
| 101 | |||
| 102 | public Date getDataCadastro() { |
||
| 103 | return dataCadastro; |
||
| 104 | } |
||
| 105 | public void setDataCadastro(Date dataCadastro) { |
||
| 106 | this.dataCadastro = dataCadastro; |
||
| 107 | } |
||
| 108 | |||
| 109 | public Boolean getIndicadorNovidades() { |
||
| 110 | return indicadorNovidades; |
||
| 111 | } |
||
| 112 | public void setIndicadorNovidades(Boolean indicadorNovidades) { |
||
| 113 | this.indicadorNovidades = indicadorNovidades; |
||
| 114 | } |
||
| 115 | |||
| 116 | public Boolean getAtivo() { |
||
| 117 | return ativo; |
||
| 118 | } |
||
| 119 | public void setAtivo(Boolean ativo) { |
||
| 120 | this.ativo = ativo; |
||
| 121 | } |
||
| 122 | |||
| 123 | } |