21 lines
380 B
C#
21 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.WarehouseMgr.Entities.Enums
|
|
{
|
|
/// <summary>
|
|
/// 载具状态枚举
|
|
/// </summary>
|
|
public enum EnumCarryStatus
|
|
{
|
|
空闲 = 0,
|
|
占用 = 1,
|
|
齐套 = 3,
|
|
寄存 = 4,
|
|
齐套分拣 = 5,
|
|
}
|
|
}
|