package br.com.centralit.citcorpore.bean; import br.com.citframework.dto.IDto; @SuppressWarnings("serial") public class NotificacaoServicoDTO implements IDto { private Integer idNotificacao; private Integer idServico; /** * @return the idNotificacao */ public Integer getIdNotificacao() { return idNotificacao; } /** * @param idNotificacao * the idNotificacao to set */ public void setIdNotificacao(Integer idNotificacao) { this.idNotificacao = idNotificacao; } /** * @return the idServico */ public Integer getIdServico() { return idServico; } /** * @param idServico * the idServico to set */ public void setIdServico(Integer idServico) { this.idServico = idServico; } }