Macchinari in uso dal cliente.
| # | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
|---|---|---|---|---|---|
| 1 | CodiceMacchinario | Codice Macchinario | Stringa | 20 | |
| 2 | CodiceArticolo | Codice Articolo | Stringa | 25 | |
| 3 | CodiceArticoloMacchinario | Codice Articolo Macchinario | Stringa | 25 | |
| 4 | GruppoMagazzino | Gruppo Magazzino | Stringa | 10 |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_RICAMBI xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<RICAMBI>
<CodiceMacchinario />
<CodiceArticolo />
<CodiceArticoloMacchinario />
<GruppoMagazzino/>
</RICAMBI>
</TABELLA_RICAMBI>
public partial class RICAMBI
{
[Indexed(Name = "IX_PK_MACCHINARIO", Order = 1, Unique = true), MaxLengthAttribute(20)]
public string CodiceMacchinario { get; set; }
[Indexed(Name = "IX_PK_MACCHINARIO", Order = 2, Unique = true), MaxLengthAttribute(25)]
public string CodiceArticolo { get; set; }
[Indexed(Name = "IX_PK_MACCHINARIO", Order = 3, Unique = true), MaxLengthAttribute(25)]
public string CodiceArticoloMacchinario { get; set; }
[Indexed(Name = "IX_PK_RICAMBI", Order = 4, Unique = true), NotNull, MaxLengthAttribute(10)]
public string GruppoMagazzino { get; set; }
}