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.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/InterfaceDocking/DockingEntity/TankDeviceStateSyncEntity.cs

38 lines
950 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.InterfaceDocking.DockingEntity
{
public class TankDeviceStateSyncEntity
{
/// <summary>
/// 请求ID
/// </summary>
public string reqCode { get; set; }
/// <summary>
/// 请求时间
/// </summary>
public DateTime reqTime { get; set; }
/// <summary>
/// 设备编码
/// </summary>
public string deviceNo { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string sku { get; set; }
/// <summary>
/// 0异常1正常 2进料 3出料
/// </summary>
public string state { get; set; }
/// <summary>
///
/// </summary>
public string planID { get; set; }
}
}