bug#12736
dev:lucas qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@87116 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
5d4b7d91f5
commit
fc73bef2fd
|
@ -29,10 +29,14 @@ public class EmpresaEmail implements Serializable {
|
||||||
private Integer empresaEmailId;
|
private Integer empresaEmailId;
|
||||||
@Column(name = "TEXTOEMAIL")
|
@Column(name = "TEXTOEMAIL")
|
||||||
private String textoEmail;
|
private String textoEmail;
|
||||||
|
@Column(name = "TEXTOEMAILFISCAL")
|
||||||
|
private String textoEmailFiscal;
|
||||||
@Column(name = "TEXTOCUPOMEMBARQUE")
|
@Column(name = "TEXTOCUPOMEMBARQUE")
|
||||||
private String textoCupomEmbarque;
|
private String textoCupomEmbarque;
|
||||||
@Column(name = "ASSUNTO")
|
@Column(name = "ASSUNTO")
|
||||||
private String assunto;
|
private String assunto;
|
||||||
|
@Column(name = "ASSUNTOFISCAL")
|
||||||
|
private String assuntoFiscal;
|
||||||
@Column(name = "EMAILDE")
|
@Column(name = "EMAILDE")
|
||||||
private String emailDe;
|
private String emailDe;
|
||||||
@OneToOne
|
@OneToOne
|
||||||
|
@ -74,6 +78,14 @@ public class EmpresaEmail implements Serializable {
|
||||||
this.textoCupomEmbarque = textoCupomEmbarque;
|
this.textoCupomEmbarque = textoCupomEmbarque;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getTextoEmailFiscal() {
|
||||||
|
return textoEmailFiscal;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTextoEmailFiscal(String textoEmailFiscal) {
|
||||||
|
this.textoEmailFiscal = textoEmailFiscal;
|
||||||
|
}
|
||||||
|
|
||||||
public String getAssunto() {
|
public String getAssunto() {
|
||||||
return assunto;
|
return assunto;
|
||||||
}
|
}
|
||||||
|
@ -82,6 +94,14 @@ public class EmpresaEmail implements Serializable {
|
||||||
this.assunto = assunto;
|
this.assunto = assunto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getAssuntoFiscal() {
|
||||||
|
return assuntoFiscal;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAssuntoFiscal(String assuntoFiscal) {
|
||||||
|
this.assuntoFiscal = assuntoFiscal;
|
||||||
|
}
|
||||||
|
|
||||||
public String getEmailDe() {
|
public String getEmailDe() {
|
||||||
return emailDe;
|
return emailDe;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue