Definisce le note di consegna che possono essere assegnate nelle note riga di un documento.
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CODICE | Codice nota consegna | Stringa | 25 | |
2 | Descrizione | Descrizione nota consegna | Stringa | 60 |
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; } }