Definisce i codici pagamento per cliente per lo split dei documenti con pagamenti 30/60.
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | CodiceCliente | Codice Cliente | Stringa | 8 | |
| 2 | Pag3060 | Pagamento 30 o 60 | Intero | ||
| 3 | CodicePagamento | Codice Pagamento | Stringa | 6 |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_PAGXART xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<PAGXART>
<CodiceCliente />
<Pag3060>0</Pag3060>
<CodicePagamento />
</PAGXART>
</TABELLA_PAGXART>
public partial class PAGXART
{
[Indexed(Name = "IX_PK_PAGXART", Order = 1, Unique = true), MaxLengthAttribute(8)]
public string CodiceCliente { get; set; }
[Indexed(Name = "IX_PK_PAGXART", Order = 2, Unique = true)]
public int Pag3060 { get; set; }
[MaxLengthAttribute(6)]
public string CodicePagamento{ get; set; }
}