Package it.pdor.contabilita.domain

Examples of it.pdor.contabilita.domain.MutuoFunzioneOperazione


      result = new ArrayList<MutuoFunzioneOperazione>(0);

      for (Object o : hqlResult) {
        Object[] record = (Object[]) o;

        MutuoFunzioneOperazione mfo = new MutuoFunzioneOperazione();
        mfo.setCodiceMutuoInterno((String) record[0]);
        mfo.setCodiceFunzione((String) record[1]);
        mfo.setCodiceFamiglia((String) record[2]);
        mfo.setCodiceOperazione((String) record[3]);
        mfo.setFlagAttivo((String) record[4]);
        mfo.setDescrizioneFamiglia((String) record[5]);
        mfo.setFlagGestione((String) record[6]);
        mfo.setSegno((String) record[7]);
        mfo.setSequenza((Integer) record[8]);
        mfo.setCodiceTipoImporto((String) record[9]);
        mfo.setCodicePartita((String) record[10]);
        mfo.setCodiceCausale((String) record[11]);
        mfo.setCodiceVoceFattura((String) record[12]);

        result.add(mfo);
      }
    }
    return result;
View Full Code Here

TOP

Related Classes of it.pdor.contabilita.domain.MutuoFunzioneOperazione

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.