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.
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|