AUCMA_SCADA/Aucma.Core.Palletiz/Models/StackInfoModel.cs

31 lines
725 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.Palletiz.Models
{
/// <summary>
/// 进库信息
/// </summary>
public class StackInfoModel
{
/// <summary>
/// 成品码
/// </summary>
public string? SNCode { get; set; }
public int LevelNo { get; set; }
public int BinNo { get; set; }
public int PortNo { get; set; }
/// <summary>
/// 范围
/// </summary>
public int RangeNo { get; set; }
/// <summary>
/// 是否为大产品
/// </summary>
public bool IsLargeProducts { get; set; }
}
}