using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebService.Model { public class InfoModel { /// /// 代码 /// public string Code { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 型号 /// public string Type { get; set; } /// /// 车型 /// public string CarType { get; set; } /// /// 颜色 /// public string Color { get; set; } /// /// 批次 /// public string Batch { get; set; } /// /// 库存 /// public string Stock { get; set; } } }