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 { /// /// 请求ID /// public string reqCode { get; set; } /// /// 请求时间 /// public DateTime reqTime { get; set; } /// /// 设备编码 /// public string deviceNo { get; set; } /// /// 物料编码 /// public string sku { get; set; } /// /// 0:异常,1:正常 2:进料 3:出料 /// public string state { get; set; } /// /// /// public string planID { get; set; } } }