1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- namespace cuidian.OpenApi.Model
- {
- //销售订单
- public class SaleorderRoot
- {
- public saleorder saleorder { get; set; }
- }
- public class saleorder
- {
- public string code { get; set; }
- public string date { get; set; }
- public string businesstype { get; set; }
- public string typecode { get; set; }
- public string typename { get; set; }
- public string state { get; set; }
- public string custcode { get; set; }
- public string cusname { get; set; }
- public string cusabbname { get; set; }
- public string deptcode { get; set; }
- public string deptname { get; set; }
- public string personcode { get; set; }
- public string personname { get; set; }
- public string dpremodatebt { get; set; }
- public string dpredatebt { get; set; }
- //public string typename { get; set; }
- //public string typecode { get; set; }
- public string sendaddress { get; set; }
- public string ccusperson { get; set; }
- public string ccuspersoncode { get; set; }
- public string caddcode { get; set; }
- public string taxrate { get; set; }
- public string memo { get; set; }
- public string maker { get; set; }
- public string verifier { get; set; }
- public string closer { get; set; }
- public string define5 { get; set; }
- public string plat_id { get; set; }
- public string define8 { get; set; }
- public Entry[] entry { get; set; }
- public string define1 { get; set; }
- public string define6 { get; set; }
- public string define10 { get; set; }
- public string define11 { get; set; }
- public string define3 { get; set; }
- }
- }
|