You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
469 B
28 lines
469 B
namespace Kean.Domain.Stock.Enums
|
|
{
|
|
/// <summary>
|
|
/// 货位状态
|
|
/// </summary>
|
|
public enum CellState
|
|
{
|
|
/// <summary>
|
|
/// 空
|
|
/// </summary>
|
|
Empty,
|
|
|
|
/// <summary>
|
|
/// 空托盘
|
|
/// </summary>
|
|
Pallet,
|
|
|
|
/// <summary>
|
|
/// 有货(非满载)
|
|
/// </summary>
|
|
Have,
|
|
|
|
/// <summary>
|
|
/// 满载
|
|
/// </summary>
|
|
Full
|
|
}
|
|
}
|