using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.InterfaceDocking.DockingEntity
{
public class TankIsDischargedSyncEntity
{
///
/// 请求ID
///
public string reqCode { get; set; }
///
/// 请求时间
///
public DateTime reqTime { get; set; }
///
/// 设备编码,1-8
///
public string deviceNo { get; set; }
///
/// 0:无料,1:有料
///
public string state { get; set; }
}
}