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