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/TankIsDischargedSyncEntity.cs

30 lines
723 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 TankIsDischargedSyncEntity
{
/// <summary>
/// 请求ID
/// </summary>
public string reqCode { get; set; }
/// <summary>
/// 请求时间
/// </summary>
public DateTime reqTime { get; set; }
/// <summary>
/// 设备编码1-8
/// </summary>
public string deviceNo { get; set; }
/// <summary>
/// 0无料1有料
/// </summary>
public string state { get; set; }
}
}