saved
This commit is contained in:
49
recticel_print_service/RecticelPrintService/PrintData.cs
Normal file
49
recticel_print_service/RecticelPrintService/PrintData.cs
Normal file
@@ -0,0 +1,49 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace RecticelPrintService
|
||||
{
|
||||
public class PrintData
|
||||
{
|
||||
[JsonProperty("order_id")]
|
||||
public int OrderId { get; set; }
|
||||
|
||||
[JsonProperty("comanda_productie")]
|
||||
public string ComandaProductie { get; set; }
|
||||
|
||||
[JsonProperty("customer_name")]
|
||||
public string CustomerName { get; set; }
|
||||
|
||||
[JsonProperty("cantitate")]
|
||||
public int Cantitate { get; set; }
|
||||
|
||||
[JsonProperty("com_achiz_client")]
|
||||
public string ComAchizClient { get; set; }
|
||||
|
||||
[JsonProperty("nr_linie_com_client")]
|
||||
public string NrLinieComClient { get; set; }
|
||||
|
||||
[JsonProperty("data_livrare")]
|
||||
public string DataLivrare { get; set; }
|
||||
|
||||
[JsonProperty("dimensiune")]
|
||||
public string Dimensiune { get; set; }
|
||||
|
||||
[JsonProperty("descr_com_prod")]
|
||||
public string DescrComProd { get; set; }
|
||||
|
||||
[JsonProperty("customer_article_number")]
|
||||
public string CustomerArticleNumber { get; set; }
|
||||
|
||||
[JsonProperty("cod_articol")]
|
||||
public string CodArticol { get; set; }
|
||||
|
||||
[JsonProperty("sequential_number")]
|
||||
public string SequentialNumber { get; set; }
|
||||
|
||||
[JsonProperty("current_label")]
|
||||
public int CurrentLabel { get; set; }
|
||||
|
||||
[JsonProperty("total_labels")]
|
||||
public int TotalLabels { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user