using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JY.MES.Entity
{
///
/// 设备状态上传接口参数类
///
public class StatusData
{
///
///
///
public string deviceNo { get; set; }
///
///
///
public string deviceState { get; set; }
///
///
///
public string stateCode { get; set; }
///
///
///
public string createTime { get; set; }
}
public class EqpStatusParam
{
///
///
///
public StatusData statusdata { get; set; }
///
///
///
public string resourceNo { get; set; }
}
}