using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiger.Model { public class iSrmDlvy { public string supplierName { get; set; } public string address { get; set; } public string supplierRemark { get; set; } public string documnetNumber { get; set; } public string fbk5 { get; set; } public string driverTelPhone { get; set; } public string fbk4 { get; set; } public string supplierCode { get; set; } public string fbk3 { get; set; } public string fbk1 { get; set; } public string driverCarNumber { get; set; } public string deleted { get; set; } public string documentStatus { get; set; } public string bookDeliveryDate { get; set; } public string driverName { get; set; } public string company { get; set; } public List bookDeliveryItems { get; set; } public string deliveryDate { get; set; } public List barcodeDetailDatas { get; set; } } public class BookDeliveryItems { public string itemNumber { get; set; } public string orderNumber { get; set; } public string materialSpec { get; set; } public string sparesRate { get; set; } public string lotNum { get; set; } public string deliveryType { get; set; } public string purchaseType { get; set; } public string materialName { get; set; } public string purchaseUnit { get; set; } public string sparesQuantity { get; set; } public string deleted { get; set; } public string projectNo { get; set; } public string materialNumber { get; set; } public string urgency { get; set; } public string itemStatus { get; set; } public string orderItemNumber { get; set; } public string deliveryQuantity { get; set; } public string price { get; set; } public string taxPrice { get; set; } public string buyerName { get; set; } } public class BarcodeDetailDatas { public string deleted { get; set; } public string materialNumber { get; set; } public string packetBarcodeNumber { get; set; } public string bookDeliveryNumber { get; set; } public string cartonBarcodeNumber { get; set; } public string materialQuantity { get; set; } public string mediumBarcodeNumber { get; set; } } }