using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Models { public class ReceiveMachine { /// /// 点检人 /// public string id { get; set; } /// /// 点检时间 /// public string createTime { get; set; } public List dataList { get; set; } public string groupName { get; set; } /// /// 班次 /// public string groupValue { get; set; } } }