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.
31 lines
725 B
C#
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; }
|
|
}
|
|
}
|