using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ChangFa.Machinery.WebPage.Models { public class ReportRepairDetail { /// /// 拖拉机 /// public string machineName { get; set; } /// /// /// public int createTime { get; set; } /// /// /// public int machineType { get; set; } /// /// /// public List status { get; set; } /// /// /// public List filePath { get; set; } /// /// /// public string machineModel { get; set; } /// /// /// public string imei { get; set; } /// /// /// public int id { get; set; } /// /// /// public int serviceId { get; set; } /// /// /// public string userId { get; set; } /// /// /// public string userName { get; set; } /// /// /// public string note { get; set; } /// /// /// public string mobile { get; set; } } public class Body { /// /// /// public ReportRepairDetail result { get; set; } } public class Head { /// /// 成功! /// public string message { get; set; } /// /// /// public string code { get; set; } /// /// /// public string isSuccess { get; set; } } public class Root { /// /// /// public Body body { get; set; } /// /// /// public Head head { get; set; } } }