purchaseorder.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. namespace cuidian.OpenApi.Model
  2. {
  3. //采购订单
  4. public class PurchaseorderRoot
  5. {
  6. public Purchaseorder purchaseorder { get; set; }
  7. }
  8. public class Purchaseorder
  9. {
  10. public string code { get; set; }
  11. public string date { get; set; }
  12. public string operation_type_code { get; set; }
  13. public string state { get; set; }
  14. public string purchase_type_code { get; set; }
  15. public string purchase_type_name { get; set; }
  16. public string vendorcode { get; set; }
  17. public string vendorname { get; set; }
  18. public string vendorabbname { get; set; }
  19. public string maker { get; set; }
  20. public string verifier { get; set; }
  21. public Entry[] entry { get; set; }
  22. public string currency_name { get; set; }
  23. public string remark { get; set; }
  24. public string define5 { get; set; }
  25. }
  26. //public class Entry
  27. //{
  28. // public string inventorycode { get; set; }
  29. // public string inventoryname { get; set; }
  30. // public string inventorystd { get; set; }
  31. // public string unitname { get; set; }
  32. // public string quantity { get; set; }
  33. // public string arrivedate { get; set; }
  34. // public string price { get; set; }
  35. // public string taxprice { get; set; }
  36. // public string money { get; set; }
  37. // public string tax { get; set; }
  38. // public string sum { get; set; }
  39. // public string taxrate { get; set; }
  40. // public string rowno { get; set; }
  41. //}
  42. }