29 lines
840 B
C#
29 lines
840 B
C#
using JSMachine.WMS.Domain.Repository;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace JSMachine.WMS.Domain.Entity
|
||
{
|
||
/// <summary>
|
||
/// 提升机取货信号统计信息
|
||
/// </summary>
|
||
public class ElevatorCount : AggregateRoot
|
||
{
|
||
/// <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; }
|
||
}
|
||
}
|