Otherout.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. namespace cuidian.OpenApi.Model
  2. {
  3. //其他出库单
  4. public class OtheroutRoot
  5. {
  6. public Otherout otherout { get; set; }
  7. }
  8. public class Otherout
  9. {
  10. public string code { get; set; }
  11. public string date { get; set; }
  12. public string maker { get; set; }
  13. public string warehousecode { get; set; }
  14. public string warehousename { get; set; }
  15. public string receivecode { get; set; }
  16. public string memory { get; set; }
  17. public string define5 { get; set;}
  18. public string define1 { get; set; }
  19. public Entry[] entry { get; set; }
  20. }
  21. //public class Entry
  22. //{
  23. // public string inventorycode { get; set; }
  24. // public string inventoryname { get; set; }
  25. // public string inventorystd { get; set; }
  26. // public string quantity { get; set; }
  27. // public string price { get; set; }
  28. // public string cost { get; set; }
  29. // public string cmassunitname { get; set; }
  30. // public string rowno { get; set; }
  31. //}
  32. }