1234567891011121314151617181920212223242526272829303132333435 |
- namespace cuidian.OpenApi.Model
- {
- //其他出库单
- public class OtheroutRoot
- {
- public Otherout otherout { get; set; }
- }
- public class Otherout
- {
- public string code { get; set; }
- public string date { get; set; }
- public string maker { get; set; }
- public string warehousecode { get; set; }
- public string warehousename { get; set; }
- public string receivecode { get; set; }
- public string memory { get; set; }
- public string define5 { get; set;}
- public string define1 { get; set; }
- public Entry[] entry { get; set; }
- }
- //public class Entry
- //{
- // public string inventorycode { get; set; }
- // public string inventoryname { get; set; }
- // public string inventorystd { get; set; }
- // public string quantity { get; set; }
- // public string price { get; set; }
- // public string cost { get; set; }
- // public string cmassunitname { get; set; }
- // public string rowno { get; set; }
- //}
- }
|