Purchasereturn.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. namespace cuidian.OpenApi.Model
  2. {
  3. //采购退货单
  4. public class PurchasereturnRoot
  5. {
  6. public Purchasereturn purchasereturn { get; set; }
  7. }
  8. public class Purchasereturn
  9. {
  10. public string date { get; set; }
  11. public string code { get; set; }
  12. public string iverifystateex { get; set; }
  13. public string purchasetypecode { get; set; }
  14. public string purchasetypename { get; set; }
  15. public string vendorcode { get; set; }
  16. public string vendorabbname { get; set; }
  17. public string vendorname { get; set; }
  18. public string departmentcode { get; set; }
  19. public string departmentname { get; set; }
  20. public string foreigncurrency { get; set; }
  21. public string businesstype { get; set; }
  22. public string maker { get; set; }
  23. public string idiscounttaxtype { get; set; }
  24. public string csysbarcode { get; set; }
  25. public Entry[] entry { get; set; }
  26. public string personcode { get; set; }
  27. public object foreigncurrencyrate { get; set; }
  28. public string memory { get; set; }
  29. public object define12 { get; set; }
  30. public string define14 { get; set; }
  31. public object cmodifydate { get; set; }
  32. public object billtype { get; set; }
  33. public string personname { get; set; }
  34. public string define5 { get; set; }
  35. }
  36. //public class Entry
  37. //{
  38. // public string inventorycode { get; set; }
  39. // public string inventoryname { get; set; }
  40. // public string inventorystd { get; set; }
  41. // public string inventoryclasscode { get; set; }
  42. // public string ccomunitcode { get; set; }
  43. // public string cinvm_unit { get; set; }
  44. // public string quantity { get; set; }
  45. // public string originalprice { get; set; }
  46. // public string originalmoney { get; set; }
  47. // public string originaltax { get; set; }
  48. // public string originalsum { get; set; }
  49. // public string price { get; set; }
  50. // public string money { get; set; }
  51. // public string tax { get; set; }
  52. // public string sum { get; set; }
  53. // public string cbcloser { get; set; }
  54. // public string taxrate { get; set; }
  55. // public string vouchstate { get; set; }
  56. // public string ivouchrowno { get; set; }
  57. // public string cbsysbarcode { get; set; }
  58. //}
  59. }