You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
851 B
C#
43 lines
851 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaterialTraceability.Entity.DTO
|
|
{
|
|
/// <summary>
|
|
/// 视图数据封装
|
|
/// </summary>
|
|
public class ViewModelDto
|
|
{
|
|
public RfidInfoDto rfidInfo { get; set; }
|
|
|
|
public List<deviceInfo> deviceStatus { get; set; }
|
|
|
|
public bool plcStatus { get; set; }
|
|
}
|
|
|
|
public class RfidInfoDto
|
|
{
|
|
public int position { get; set; }
|
|
|
|
public string rfid { get; set; }
|
|
|
|
public string sfc { get; set; }
|
|
|
|
public bool isproduction { get; set; }
|
|
|
|
public string ea { get; set; }
|
|
|
|
public bool isfinish { get; set; }
|
|
}
|
|
|
|
public class deviceInfo
|
|
{
|
|
public int position { get; set; }
|
|
|
|
public bool status { get; set; }
|
|
}
|
|
}
|