Saleorder.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. namespace cuidian.OpenApi.Model
  2. {
  3. //销售订单
  4. public class SaleorderRoot
  5. {
  6. public saleorder saleorder { get; set; }
  7. }
  8. public class saleorder
  9. {
  10. public string code { get; set; }
  11. public string date { get; set; }
  12. public string businesstype { get; set; }
  13. public string typecode { get; set; }
  14. public string typename { get; set; }
  15. public string state { get; set; }
  16. public string custcode { get; set; }
  17. public string cusname { get; set; }
  18. public string cusabbname { get; set; }
  19. public string deptcode { get; set; }
  20. public string deptname { get; set; }
  21. public string personcode { get; set; }
  22. public string personname { get; set; }
  23. public string dpremodatebt { get; set; }
  24. public string dpredatebt { get; set; }
  25. //public string typename { get; set; }
  26. //public string typecode { get; set; }
  27. public string sendaddress { get; set; }
  28. public string ccusperson { get; set; }
  29. public string ccuspersoncode { get; set; }
  30. public string caddcode { get; set; }
  31. public string taxrate { get; set; }
  32. public string memo { get; set; }
  33. public string maker { get; set; }
  34. public string verifier { get; set; }
  35. public string closer { get; set; }
  36. public string define5 { get; set; }
  37. public string plat_id { get; set; }
  38. public string define8 { get; set; }
  39. public Entry[] entry { get; set; }
  40. public string define1 { get; set; }
  41. public string define6 { get; set; }
  42. public string define10 { get; set; }
  43. public string define11 { get; set; }
  44. public string define3 { get; set; }
  45. }
  46. }