12345678910111213141516171819202122232425 |
- namespace cuidian.OpenApi.Model
- {
- public class VendorRoot
- {
- public Vendor vendor { get; set; }
- }
- public class Vendor
- {
- public string RowNum { get; set; }
- public string sort_code { get; set; }
- public string code { get; set; }
- public string abbrname { get; set; }
- public string name { get; set; }
- public string timestamp { get; set; }
- public string row_count { get; set; }
- public string contact { get; set; }
- public string phone { get; set; }
- public string mobile { get; set; }
- public string fax { get; set; }
- public string email { get; set; }
- public string address { get; set; }
- public string memo { get; set; }
- }
- }
|