You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
609 B
29 lines
609 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace WebAPI.Models
|
|
{
|
|
public class ReceiveMachine
|
|
{
|
|
/// <summary>
|
|
/// 点检人
|
|
/// </summary>
|
|
public string id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 点检时间
|
|
/// </summary>
|
|
public string createTime { get; set; }
|
|
|
|
public List<MachineClass> dataList { get; set; }
|
|
|
|
public string groupName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 班次
|
|
/// </summary>
|
|
public string groupValue { get; set; }
|
|
}
|
|
}
|