40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace JSMachine.WMS.App.Dto
|
||
{
|
||
/// <summary>
|
||
/// 提升机取货信号统计信息
|
||
/// </summary>
|
||
public class ElevatorCountDto : IRootDto
|
||
{
|
||
public Guid Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// 提升机编号(1 2)
|
||
/// </summary>
|
||
public int ElevatorNo { get; set; }
|
||
/// <summary>
|
||
/// 通道号(网带编号)
|
||
/// </summary>
|
||
public int ElevatorChannel { get; set; }
|
||
/// <summary>
|
||
/// 数量(放货口是wms实际放货的数量,取货口是PLC给的取货信号的次数,如果有货的时候重启wms会造成计数多一个)
|
||
/// </summary>
|
||
public int Count { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// </summary>
|
||
public DateTime? CreationTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 修改时间
|
||
/// </summary>
|
||
public DateTime? LastModifiedTime { get; set; }
|
||
}
|
||
}
|