NOTECON

Definisce le note di consegna che possono essere assegnate nelle note riga di un documento.

#COLONNADECRIZIONETIPOLENNOTE
1CODICECodice nota consegnaStringa25
2DescrizioneDescrizione nota consegnaStringa60

Esempio

'01','CONSEGNA DOPO LE ORE:'
'02','RESTITUISCE:'
'03','CONTROLLARE …..'
'04','UNICA CONSEGNA'


<?xml version="1.0" encoding="utf-8"?>
<TABELLA_NOTECON xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
  <NOTECON>
    <CODICE />
    <Descrizione />
  </NOTECON>
</TABELLA_NOTECON>
    public partial class NOTECON
    {
        [PrimaryKey, MaxLengthAttribute(25)]
        public string CODICE { get; set; }


        [MaxLengthAttribute(60)]
        public string Descrizione { get; set; }

    }

Documentazione Zippy Infinity