引用: Newtonsoft.Json.dll // 引用: using Newtonsoft.Json; using Newtonsoft.Json.Converters; // 定义 实体测试类 public class Customer { public string name { get; set; } public string code { get; set; } public Customer() // 貌似空构造函数必须 { } public Customer(string na…