123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- namespace cuidian.OpenApi.Model
- {
- //采购订单
- public class PurchaseorderRoot
- {
- public Purchaseorder purchaseorder { get; set; }
- }
- public class Purchaseorder
- {
- public string code { get; set; }
- public string date { get; set; }
- public string operation_type_code { get; set; }
- public string state { get; set; }
- public string purchase_type_code { get; set; }
- public string purchase_type_name { get; set; }
- public string vendorcode { get; set; }
- public string vendorname { get; set; }
- public string vendorabbname { get; set; }
- public string maker { get; set; }
- public string verifier { get; set; }
- public Entry[] entry { get; set; }
- public string currency_name { get; set; }
- public string remark { get; set; }
- public string define5 { get; set; }
-
- }
- //public class Entry
- //{
- // public string inventorycode { get; set; }
- // public string inventoryname { get; set; }
- // public string inventorystd { get; set; }
- // public string unitname { get; set; }
- // public string quantity { get; set; }
- // public string arrivedate { get; set; }
- // public string price { get; set; }
- // public string taxprice { get; set; }
- // public string money { get; set; }
- // public string tax { get; set; }
- // public string sum { get; set; }
- // public string taxrate { get; set; }
- // public string rowno { get; set; }
- //}
- }
|