Vendor.cs 763 B

12345678910111213141516171819202122232425
  1. namespace cuidian.OpenApi.Model
  2. {
  3. public class VendorRoot
  4. {
  5. public Vendor vendor { get; set; }
  6. }
  7. public class Vendor
  8. {
  9. public string RowNum { get; set; }
  10. public string sort_code { get; set; }
  11. public string code { get; set; }
  12. public string abbrname { get; set; }
  13. public string name { get; set; }
  14. public string timestamp { get; set; }
  15. public string row_count { get; set; }
  16. public string contact { get; set; }
  17. public string phone { get; set; }
  18. public string mobile { get; set; }
  19. public string fax { get; set; }
  20. public string email { get; set; }
  21. public string address { get; set; }
  22. public string memo { get; set; }
  23. }
  24. }