function EntConfProducao() {
	
	this.setId("EntConfProducao");
	
	this.codFornecedor; //int
	this.nomeFornecedor; //String

	this.toString = function() {
		return "entConfProducao";
	}
	
	this.getCodFornecedor = function() {
		return this.codFornecedor;
	}

	this.setCodFornecedor = function(iCodFornecedor) {
		this.codFornecedor = iCodFornecedor;
	}

	this.getNomeFornecedor = function() {
		return this.nomeFornecedor;
	}

	this.setNomeFornecedor = function(sNomeFornecedor) {
		this.nomeFornecedor = sNomeFornecedor;
	}

	
}
EntConfProducao.prototype = new EntPrincipal;
